aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2000-04-13 19:22:19 +0000
committerBill Nottingham <notting@redhat.com>2000-04-13 19:22:19 +0000
commitc915e8fc5583cc75d880595f9ce8b4cfb392056f (patch)
tree807a407513dfd109f57f22e154fbede424ae9716 /rc.d
parentfd0e5d94f3d0570e68e3eafd3249de2610c2df5e (diff)
downloadinitscripts-c915e8fc5583cc75d880595f9ce8b4cfb392056f.tar
initscripts-c915e8fc5583cc75d880595f9ce8b4cfb392056f.tar.gz
initscripts-c915e8fc5583cc75d880595f9ce8b4cfb392056f.tar.bz2
initscripts-c915e8fc5583cc75d880595f9ce8b4cfb392056f.tar.xz
initscripts-c915e8fc5583cc75d880595f9ce8b4cfb392056f.zip
that check was bogus
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/network2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index ffd49236..65aeef1f 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -58,7 +58,7 @@ case "$1" in
esac
for i in $interfaces; do
- if egrep -L "ONBOOT=\"?[Nn][Oo]\"?" ifcfg-$i | grep -v "^#" >/dev/null ; then
+ if egrep -L "ONBOOT=\"?[Nn][Oo]\"?" ifcfg-$i ; then
# Probe module to preserve interface ordering
/sbin/ifconfig $i >/dev/null 2>&1
else