summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2007-04-25 11:59:50 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2007-04-25 11:59:50 +0000
commitd2647d715f4901160a3d8d710228afba2702ae15 (patch)
treec7b7cfdddb3571aa6ea24ab5bfd941101c0d1523 /distrib
parent60b08424f5962c16449d90f93eb1a58222bf40da (diff)
Use 'ifconfig' and not 'ifconfig -a' as the -a is now the default.
Diffstat (limited to 'distrib')
-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'
}