arch-installer/example-vbox.cfg
2023-08-13 16:26:57 +02:00

55 lines
2.1 KiB
INI

# Example config for testing in VirtualBox
#FQDN=domain.name.of.this.host.de
#STATIC_IP=123.123.123.123
# IPV6_CAPABLE: 'true' | 'false'
IPV6_CAPABLE=true
HOSTNAME=yodaTest
USERNAME=yoda
USER_PWD='test'
#ROOT_PWD=test
# FDE: 'true' | 'false'
FDE=true
LUKS_PWD='test'
# TODO: see Server Hardware > Dracut notes
# REMOTE_UNLOCKING: 'true' | 'false'
REMOTE_UNLOCKING='true'
# As in ~/.ssh/authorized_keys
TRUSTED_SSH_KEY='ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCpgihAg8Qzu5q+AGXHLR7p+rrS1yB0KlZb/Y/EwZT15EhEtsUMqBMRiY0TdjKQU0broyygZnymccLmCXvihEgk3zk/hP8VEDmN5wmE2tRBPR4lSjo8E1R8N79G+gaFkwi93QYh57MsGfa9k4tvGrJy0yaD7GrPqtQf+IIuvV14WJQAqnikTdbFqRjk5JGearYLU7jSKa+9NmR7JQ9NExoyIPgmQ/pd0Xc2qt8k5UGfz3HM9MAmIVQ30whK6m1iYZ8nxEidHrfreQx8NOa7ujo4zQnV1NYvRUjObr/qyIhPU6DYLT2mVRNupQFKx6LI38O4U13heugUFqJ3zvog3aDsriFiv8jzJAJvWXx7Q3TqKhqiG9VTkwBw1NDbCAOXKiEdMfiCYbdCfpNgdepU75bMloJcSQQVUqoH2tQhSbwKLuRFgOnyaHpvWbieXBRcUnfG8gg4p4jqiwx5laweEeOIOD/i7G1Mjx7Dj2ctnT/ILat/xsf+Y0W4eJr3bc5L9ghgw6wsKbNSqwjFUCFcHcARK3gvSH+hO2/BpgMVoyvZjO5PNuUqfsZ7bIIs5cDdyB/ly3irKuaRz1+3x1x4gPgSiOcji7HxPwogzhPsyfoRLHNt9tJ5X4nF2Iz1M5RTJpbZCi6yEj+9Q85FVjD76BEWuZe18kRrwhuLf/XgKdF9tQ== openpgp:0xA8B75370'
TARGET_BLOCK_DEVICE=/dev/sda # /dev/vda for Virtual Machine Manager
# BOOT_PART_SIZE: in MiB, at least 260
BOOT_PART_SIZE=260
# FS: 'BTRFS' | 'EXT4' | 'F2FS'
FS=BTRFS
# FS_BTRFS_SUBVOL_LAYOUT: 'root_only' | '@root@home'
FS_BTRFS_SUBVOL_LAYOUT='@root@home'
FS_ADDITIONAL_MOUNT_OPTIONS=('noatime')
# If not booted into the target system, these values should be set:
# CPU_VENDOR: 'autodetect' | 'amd' | 'intel' | 'none'
CPU_VENDOR=none
# BOOT_FIRMWARE: 'autodetect' | 'uefi' | 'bios'
BOOT_FIRMWARE=uefi
# INITRAMFS: 'mkinitcpio' | 'dracut'
INITRAMFS=dracut
# 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' | 'false'
LEAVE_MOUNTED=false
# PACSTRAP_INTERACTIVE: 'true' | 'false'
PACSTRAP_INTERACTIVE=true
############## ADDITIONAL_PKGS from here on ##############
ADDITIONAL_PKGS=()
# VBox guest additions
ADDITIONAL_PKGS+=('virtualbox-guest-utils')