diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-29 20:54:34 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-29 20:54:34 +0000 |
commit | 73909514e2a052167c492907689670729a06c359 (patch) | |
tree | 3bf854b9af0e376f984ecf1c331e360d8c71a43e /distrib/miniroot | |
parent | ac2bd911058daacc24ff4291dbd1f64018e3f673 (diff) |
Fix previous: use correct version of netstart and installer bits.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sub | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 558e8601c80..46f17414866 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1156 2020/11/29 20:14:06 deraadt Exp $ +# $OpenBSD: install.sub,v 1.1157 2020/11/29 20:54:33 tb Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -2395,7 +2395,7 @@ ifstart() { # Configure the network during upgrade based on the on-disk configuration. enable_network() { - local _f _gw _hn _if _trunks _svlans _vlans + local _f _gw _v4set=false _v6set=false _hn _if _trunks _svlans _vlans # Use installed network configuration files during upgrade. for _f in resolv.conf resolv.conf.tail; do @@ -2443,14 +2443,22 @@ enable_network() { # dhcp. Use for ipv6 if no interfaces configured via autoconf. stripcom /mnt/etc/mygate | while read _gw; do - [[ $_gw == '!'* ]] && continue - if [[ $_gw != @(*:*) ]]; then - $V4_DHCPCONF && continue + case $_gw in + '!'*) + # Skip shell commands in the installer. + continue + ;; + !(*:*)) + ($_v4set || $V4_DHCPCONF) && continue route -qn add -host default $_gw - elif [[ $_gw == @(*:*) ]]; then - $V6_AUTOCONF && continue + _v4set=true + ;; + *) + ($_v6set || $V6_AUTOCONF) && continue route -qn add -host -inet6 default $_gw - fi + _v6set=true + ;; + esac done route -qn add -net 127 127.0.0.1 -reject >/dev/null |