summaryrefslogtreecommitdiffstats
path: root/etc/network.subr
diff options
context:
space:
mode:
Diffstat (limited to 'etc/network.subr')
-rw-r--r--etc/network.subr3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/network.subr b/etc/network.subr
index 5e68a3d..fba88d1 100644
--- a/etc/network.subr
+++ b/etc/network.subr
@@ -146,7 +146,8 @@ network_start()
dhcp_interfaces=""
for ifn in ${network_interfaces}; do
- if ifconfig ${ifn} | grep -s UP, > /dev/null 2>&1; then
+ _up=`ifconfig ${ifn} | head -1 | grep -v LOOPBACK | grep UP,`
+ if [ "$_up" != "" ]; then
# Interface is already up, so ignore it.
continue;
fi
OpenPOWER on IntegriCloud