diff options
author | Bill Nottingham <notting@redhat.com> | 2000-04-13 21:28:53 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-04-13 21:28:53 +0000 |
commit | 8d574fb1d8260674ca6aedbcde4c03998577ff10 (patch) | |
tree | 46aa62117536d9623e5ab484063b9306fc5e1269 | |
parent | 696a33e7c46c1729be973da12b325322b4cb3209 (diff) | |
download | initscripts-8d574fb1d8260674ca6aedbcde4c03998577ff10.tar initscripts-8d574fb1d8260674ca6aedbcde4c03998577ff10.tar.gz initscripts-8d574fb1d8260674ca6aedbcde4c03998577ff10.tar.bz2 initscripts-8d574fb1d8260674ca6aedbcde4c03998577ff10.tar.xz initscripts-8d574fb1d8260674ca6aedbcde4c03998577ff10.zip |
that's better
-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 65aeef1f..11d85b73 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 ; then + if egrep -L "^ONBOOT=\"?[Nn][Oo]\"?" ifcfg-$i ; then # Probe module to preserve interface ordering /sbin/ifconfig $i >/dev/null 2>&1 else |