config.sh.template 325 B

123456789101112
  1. # Variables
  2. mnt="/mnt/root" # mountpoint for the new root filesystem
  3. hostname="somehost.example.com"
  4. disk="/dev/vda" # lsblk --list
  5. disk1=$disk"1"
  6. netDev="eth0" # ip link
  7. netAddress="203.0.113.66/24"
  8. netGateway="203.0.113.1"
  9. netBroadcast="203.0.113.255"
  10. netDNS1="192.0.2.10"
  11. netDNS2="198.51.100.10"
  12. netNTP="pool.ntp.org"