artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c28b48
)
Fix get_ifdevs() - don't filter vlan interfaces.
author
rpe
<rpe@openbsd.org>
Wed, 7 Jan 2015 19:20:53 +0000
(19:20 +0000)
committer
rpe
<rpe@openbsd.org>
Wed, 7 Jan 2015 19:20:53 +0000
(19:20 +0000)
OK krw@
distrib/miniroot/install.sub
patch
|
blob
|
history
diff --git
a/distrib/miniroot/install.sub
b/distrib/miniroot/install.sub
index
4590774
..
d0cf089
100644
(file)
--- a/
distrib/miniroot/install.sub
+++ b/
distrib/miniroot/install.sub
@@
-1,4
+1,4
@@
-# $OpenBSD: install.sub,v 1.80
6 2015/01/04 18:44:12 tedu
Exp $
+# $OpenBSD: install.sub,v 1.80
7 2015/01/07 19:20:53 rpe
Exp $
#
# Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback
# All rights reserved.
@@
-161,7
+161,7
@@
get_cddevs () {
}
get_ifdevs() {
- local _if _iflist=$(
ifconfig -C
)
+ local _if _iflist=$(
rmel vlan $(ifconfig -C)
)
for _if in $(ifconfig "$@" 2>/dev/null |
sed -n 's/^\([^[:space:]]*\):.*/\1/p'); do