diff options
author | Bill Nottingham <notting@redhat.com> | 2000-04-13 19:22:19 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-04-13 19:22:19 +0000 |
commit | c915e8fc5583cc75d880595f9ce8b4cfb392056f (patch) | |
tree | 807a407513dfd109f57f22e154fbede424ae9716 /rc.d/init.d | |
parent | fd0e5d94f3d0570e68e3eafd3249de2610c2df5e (diff) | |
download | initscripts-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/init.d')
-rwxr-xr-x | rc.d/init.d/network | 2 |
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 |