Merge pull request #235 from 64kramsystem/add_debian_11_support

Add support for Debian 11
This commit is contained in:
Saverio Miroddi 2021-08-30 11:05:48 +02:00 committed by GitHub
commit 0a27e2345c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ The program currently supports:
- Ubuntu Desktop 18.04.x/20.04 Live - Ubuntu Desktop 18.04.x/20.04 Live
- Ubuntu Server 18.04.x/20.04 Live - Ubuntu Server 18.04.x/20.04 Live
- Linux Mint 19.x, 20 - Linux Mint 19.x, 20
- Debian 10.x Live (desktop environment required) - Debian 10.x/11.x Live (desktop environment required)
- ElementaryOS 5.1 - ElementaryOS 5.1
The ZFS version installed is 0.8 (optionally, 2.x), which supports native encryption and trimming (among the other improvements over 0.7). The required repositories are automatically added to the destination system. The ZFS version installed is 0.8 (optionally, 2.x), which supports native encryption and trimming (among the other improvements over 0.7). The required repositories are automatically added to the destination system.

View File

@ -115,7 +115,7 @@ USERDATA/%P mountpoint=/home/%P canmount=on com.ubuntu.zsys:b
' '
c_zfs_mount_dir=/mnt c_zfs_mount_dir=/mnt
c_installed_os_mount_dir=/target c_installed_os_mount_dir=/target
declare -A c_supported_linux_distributions=([Debian]=10 [Ubuntu]="18.04 20.04" [UbuntuServer]="18.04 20.04" [LinuxMint]="19.1 19.2 19.3" [Linuxmint]="20 20.1" [elementary]=5.1) declare -A c_supported_linux_distributions=([Debian]="10 11" [Ubuntu]="18.04 20.04" [UbuntuServer]="18.04 20.04" [LinuxMint]="19.1 19.2 19.3" [Linuxmint]="20 20.1" [elementary]=5.1)
c_temporary_volume_size=12 # gigabytes; large enough - Debian, for example, takes ~8 GiB. c_temporary_volume_size=12 # gigabytes; large enough - Debian, for example, takes ~8 GiB.
c_passphrase_named_pipe=$(dirname "$(mktemp)")/zfs-installer.pp.fifo c_passphrase_named_pipe=$(dirname "$(mktemp)")/zfs-installer.pp.fifo
c_dns=8.8.8.8 c_dns=8.8.8.8