config.sh.template 554 B

1234567891011121314
  1. # Variables
  2. mnt="/mnt/root" # mountpoint for the new root filesystem
  3. hostname="somehost.example.com"
  4. disk="/dev/vda" # find with: lsblk --list
  5. disk1=$disk"1" # "p1" for nbd mounts
  6. netDev="eth0" # find with: ip link
  7. netAddress="203.0.113.66/24" # "" blank for dhcp on e*
  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"
  13. pwdAdmin="" # "" blank for auto-generation
  14. pwdRoot="" # "" blank for auto-generation