From 74cf87dcdf173c8d9169fe345eb00d891bd286ef Mon Sep 17 00:00:00 2001 From: mischa Date: Thu, 28 Oct 2021 11:48:04 +0200 Subject: [PATCH] changed dhcp to autoconf for autoinstall --- deploy.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;