diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2017-05-01 14:29:40 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2017-05-01 14:29:40 +0000 |
commit | b6fdd2f3b6f3896351eabe7b3229da54a8fca59b (patch) | |
tree | 9efb58cd1bb03a0e138bd7dd411dca70e8109303 /distrib/miniroot | |
parent | 40116a21edcfdc66da11114703287113cd76f426 (diff) |
Apply same change of defaultroute handling as in r1.179 of netstart.
Now that routes are automatically G/C with the address they are
attached to there's no reason to duplicate the kernel's job.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index de817ad2236..c47a26257f3 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.999 2017/05/01 14:22:36 rpe Exp $ +# $OpenBSD: install.sub,v 1.1000 2017/05/01 14:29:39 rpe Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -2254,13 +2254,11 @@ enable_network() { ! $V4_DHCPCONF && stripcom /mnt/etc/mygate | while read _gw; do [[ $_gw == @(*:*) ]] && continue - route -qn delete default >/dev/null 2>&1 route -qn add -host default $_gw && break done ! $V6_AUTOCONF && stripcom /mnt/etc/mygate | while read _gw; do [[ $_gw == !(*:*) ]] && continue - route -qn delete -inet6 default >/dev/null 2>&1 route -qn add -host -inet6 default $_gw && break done |