summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2007-04-25 11:59:49 +0000
committerkrw <krw@openbsd.org>2007-04-25 11:59:49 +0000
commitf2023ea7057a741e85b7d91d8db749175c214f43 (patch)
tree7fb55c3fd664f6859c90009ae45503d1cfb144c6
parentAdd capacity to specify one ntp 'server' (not 'servers') during install. (diff)
downloadwireguard-openbsd-f2023ea7057a741e85b7d91d8db749175c214f43.tar.xz
wireguard-openbsd-f2023ea7057a741e85b7d91d8db749175c214f43.zip
Use 'ifconfig' and not 'ifconfig -a' as the -a is now the default.
-rw-r--r--distrib/miniroot/install.sub4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index b7159c09b78..0f9cb5caa12 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,4 +1,4 @@
-# $OpenBSD: install.sub,v 1.416 2007/04/25 11:52:14 krw Exp $
+# $OpenBSD: install.sub,v 1.417 2007/04/25 11:59:49 krw Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997-2007 Todd Miller, Theo de Raadt, Ken Westerback
@@ -189,7 +189,7 @@ scan_disknames() {
}
get_ifdevs() {
- ifconfig -a \
+ ifconfig \
| egrep -v '^[[:space:]]|(bridge|enc|gif|gre|lo|pflog|pfsync|ppp|sl|tun|vlan)[[:digit:]]+:' \
| sed -ne 's/^\(.*\):.*/\1/p'
}