Browse Source

Unbreak netstart for multiple inteface configurations like trunk

or carp. Ensure that the noglob option is disabled at the end of
parse_hn_line() and ifstart().
Reported by Christer Solskogen and Stefan Wollny, thanks!
OPENBSD_6_2
rpe 7 years ago
parent
commit
15ac759f10
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/etc/netstart

+ 3
- 1
src/etc/netstart View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $OpenBSD: netstart,v 1.177 2017/04/24 20:31:48 rpe Exp $
# $OpenBSD: netstart,v 1.178 2017/04/25 19:17:33 rpe Exp $
# Turn off Strict Bourne shell mode. # Turn off Strict Bourne shell mode.
set +o sh set +o sh
@ -76,6 +76,7 @@ parse_hn_line() {
;; ;;
esac esac
unset _c unset _c
set +o noglob
} }
# Start a single interface. # Start a single interface.
@ -124,6 +125,7 @@ ifstart() {
((_i++)) ((_i++))
done done
unset _cmds unset _cmds
set +o noglob
} }
# Start multiple interfaces by driver name. # Start multiple interfaces by driver name.


Loading…
Cancel
Save