config.sh.template 1.1 KB

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