config.sh.template 839 B

123456789101112131415161718
  1. # Variables
  2. mnt="/mnt/root" # mountpoint for the new root filesystem
  3. hostname="somehost.example.com"
  4. kernel="linux-image-cloud-amd64" # alternative: linux-image-amd64
  5. partition="mbr-single" # mbr-single or efi-crypt
  6. disk="/dev/vda" # find with: lsblk --list
  7. disk0=$disk"p1" # efi partion, only relevant if partion="efi"
  8. disk1=$disk"1" # "p1" for nbd or nvme mounts
  9. netDev="eth0" # find with: ip link
  10. netAddress="203.0.113.66/24" # "" blank for dhcp on e*
  11. netGateway="203.0.113.1"
  12. netBroadcast="203.0.113.255"
  13. netDNS1="192.0.2.10"
  14. netDNS2="198.51.100.10"
  15. netNTP="pool.ntp.org"
  16. pwdAdmin="" # "" blank for auto-generation
  17. pwdRoot="" # "" blank for auto-generation
  18. extraPackages="qemu-guest-agent"