diff --git a/deploy.pl b/deploy.pl index 2301504..2a204e4 100755 --- a/deploy.pl +++ b/deploy.pl @@ -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;