changed dhcp to autoconf for autoinstall

This commit is contained in:
mischa 2021-10-28 11:48:04 +02:00
parent 27e636463b
commit 74cf87dcdf
1 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
# 2021/01/19 added: format of disk images in vm.conf (CVE-2010-3851), thanx Johan Finnved
# 2021/05/18 changed: restrict the install.conf files in /var/www
# 2021/08/29 added: next-server to dhcpd.conf, reliable pull of install.conf
# 2021/10/28 changed: autoinstall from dhcp to autoconf
#
use 5.024;
use strict;
@ -202,7 +203,7 @@ sub render_install_conf {
printf $fh_install "Password for root = %s\n", $jot_pass;
printf $fh_install "Which speed should com0 = 115200\n";
printf $fh_install "Network interfaces = vio0\n";
printf $fh_install "IPv4 address for vio0 = dhcp\n";
printf $fh_install "IPv4 address for vio0 = autoconf\n";
printf $fh_install "IPv6 address for vio0 = %s\n", $_ipv6;
printf $fh_install "IPv6 default router = %s\n", $_ipv6_gateway;
printf $fh_install "Setup a user = %s\n", $_username;