diff options
author | Bill Nottingham <notting@redhat.com> | 2000-09-08 20:24:53 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-09-08 20:24:53 +0000 |
commit | 52192c29b79c6f0d6285faa8adddbc771bc8cc42 (patch) | |
tree | e59086975d7e74b9528d8547ddadfcc0c663ba3e /rc.d | |
parent | beaa25087849796748945f871d4fdd3e72bf6b72 (diff) | |
download | initscripts-52192c29b79c6f0d6285faa8adddbc771bc8cc42.tar initscripts-52192c29b79c6f0d6285faa8adddbc771bc8cc42.tar.gz initscripts-52192c29b79c6f0d6285faa8adddbc771bc8cc42.tar.bz2 initscripts-52192c29b79c6f0d6285faa8adddbc771bc8cc42.tar.xz initscripts-52192c29b79c6f0d6285faa8adddbc771bc8cc42.zip |
linuxconf movedr5-49
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/network | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 3635c2f2..7e15822f 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -124,8 +124,8 @@ case "$1" in echo "Configured devices:" echo lo $interfaces - if [ -x /bin/linuxconf ] ; then - eval `/bin/linuxconf --hint netdev` + if [ -x /sbin/linuxconf ] ; then + eval `/sbin/linuxconf --hint netdev` echo "Devices that are down:" echo $DEV_UP echo "Devices with modified configuration:" @@ -141,8 +141,8 @@ case "$1" in $0 start ;; reload) - if [ -x /bin/linuxconf ] ; then - eval `/bin/linuxconf --hint netdev` + if [ -x /sbin/linuxconf ] ; then + eval `/sbin/linuxconf --hint netdev` for device in $DEV_UP ; do action "Bringing up device $device: " ./ifup $device done @@ -182,8 +182,8 @@ case "$1" in fi ;; probe) - if [ -x /bin/linuxconf ] ; then - eval `/bin/linuxconf --hint netdev` + if [ -x /sbin/linuxconf ] ; then + eval `/sbin/linuxconf --hint netdev` [ -n "$DEV_UP$DEV_DOWN$DEV_RECONF$DEV_RECONF_ALIASES" -o \ -n "$DEV_RECONF_ROUTES$IPXINTERNALNET" ] && \ echo reload |