diff options
author | mischa <mischa@rx.high5.nl> | 2021-10-28 11:48:04 +0200 |
---|---|---|
committer | mischa <mischa@rx.high5.nl> | 2021-10-28 11:48:04 +0200 |
commit | 74cf87dcdf173c8d9169fe345eb00d891bd286ef (patch) | |
tree | d83df86392e4c99f85e5c668faa2fef7c969a020 | |
parent | 27e636463b00e354db54c7da9f658e58baf37be3 (diff) |
changed dhcp to autoconf for autoinstall
-rwxr-xr-x | deploy.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |