cleanup example cfg of installer

This commit is contained in:
Daniel Langbein 2021-11-13 16:40:53 +01:00
parent be0fe6ea86
commit b04ea95c25
3 changed files with 5 additions and 9 deletions

View File

@ -2,7 +2,7 @@
_pkgname=installer
_reponame=arch
pkgname="de-p1st-$_pkgname"
pkgver=0.2.0
pkgver=0.2.1
pkgrel=1
pkgdesc="Installer for Arch Linux written in Bash"
arch=('any')

View File

@ -14,10 +14,7 @@ FS_ADDITIONAL_MOUNT_OPTIONS=('noatime')
CPU_VENDOR=none
BOOT_FIRMWARE=uefi
# If set to "1", then the data, boot and luks partitions
# will be left mounted/opened after installation
LEAVE_MOUNTED=false
PACSTRAP_INTERACTIVE=true
ADDITIONAL_PKGS=()

View File

@ -8,7 +8,7 @@ USERNAME=yoda
# One should rather enter these interactively than saving in this cfg.
USER_PWD='test'
FDE=true # enable FULL-DISK-ENCRYPTION
FDE=false # enable FULL-DISK-ENCRYPTION
LUKS_PWD='test'
# If unset, then USER_PWD will be used for ROOT_PWD
@ -21,16 +21,15 @@ FS_BTRFS_SUBVOL_LAYOUT='@root@home' # Subvolume layout that is supported by Tim
FS_ADDITIONAL_MOUNT_OPTIONS=('noatime')
# If not booted into the target system, these values should be set:
# CPU_VENDOR: "autodetect", "amd", "intel" or "none"
# CPU_VENDOR: 'autodetect' | 'amd' | 'intel' | 'none'
CPU_VENDOR=autodetect
# BOOT_FIRMWARE: "autodetect", "uefi" or "bios"
# BOOT_FIRMWARE: 'autodetect' | 'uefi' | 'bios'
BOOT_FIRMWARE=uefi
# If set to "1", then the data, boot and luks partitions
# If set to 'true', then the data, boot and luks partitions
# will be left mounted/opened for manual inspection
# after the installation
LEAVE_MOUNTED=true
PACSTRAP_INTERACTIVE=true
############## ADDITIONAL_PKGS from here on ##############