config.sh.template 679 B

12345678910111213141516
  1. # Variables
  2. mnt="/mnt/root" # mountpoint for the new root filesystem
  3. hostname="somehost.example.com"
  4. partition="single-mbr" # set "efi" to skip partitioning and install grub-efi
  5. disk="/dev/vda" # find with: lsblk --list
  6. disk1=$disk"1" # "p1" for nbd or nvme mounts
  7. netDev="eth0" # find with: ip link
  8. netAddress="203.0.113.66/24" # "" blank for dhcp on e*
  9. netGateway="203.0.113.1"
  10. netBroadcast="203.0.113.255"
  11. netDNS1="192.0.2.10"
  12. netDNS2="198.51.100.10"
  13. netNTP="pool.ntp.org"
  14. pwdAdmin="" # "" blank for auto-generation
  15. pwdRoot="" # "" blank for auto-generation
  16. extraPackages="qemu-guest-agent"