From 9b5045a5d17bb618496e0568d0cb2fac222d057c Mon Sep 17 00:00:00 2001 From: rpe Date: Tue, 25 Apr 2017 19:24:05 +0000 Subject: [PATCH] Unbreak multiple interface configurations like trunk or carp. Ensure that the noglob option is disabled at the end of parse_hn_line() and ifstart(). --- distrib/miniroot/install.sub | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index e249c6e8186..4e17c3a772b 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.997 2017/04/24 20:27:59 rpe Exp $ +# $OpenBSD: install.sub,v 1.998 2017/04/25 19:24:05 rpe Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer @@ -2179,6 +2179,7 @@ parse_hn_line() { ;; esac unset _c + set +o noglob } # Start interface using the on-disk hostname.if file passed as argument $1. @@ -2202,6 +2203,7 @@ ifstart () { ((_i++)) done unset _cmds + set +o noglob } # Configure the network during upgrade based on the on-disk configuration. -- 2.20.1