From: rpe Date: Mon, 1 May 2017 14:29:39 +0000 (+0000) Subject: Apply same change of defaultroute handling as in r1.179 of netstart. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9d45a1e425ffa8c6db10c35b07e3cf8ff17df452;p=openbsd 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. --- 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 @@ -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