# configs for installing via netboot # Generally we'll do a basic server install. d-i preseed/include string common.cfg passwd.cfg server.cfg dodo.cfg override.cfg # Networking must already be set up, so it's easy to load a config # based on the machine's hostname assigned by dhcp. d-i preseed/include_command string case $(cat /etc/hostname) in elephant) echo machine/elephant.cfg ;; donkey) echo machine/donkey.cfg ;; zebra) echo machine/zebra.cfg ;; hercules) echo machine/hercules.cfg ;; bison) echo machine/bison.cfg ;; esac #; echo unstable.cfg # Uncomment the above line and add it to the string above for force # installation of unstable for netboot installs. Most useful during kernel # transitions.