diff options
author | Bill Nottingham <notting@redhat.com> | 1999-07-01 17:21:07 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-07-01 17:21:07 +0000 |
commit | ededc76f1ce174201feec08a6be4a84ca36d89b3 (patch) | |
tree | 05d776b3c235d756256df1277b50d770e2a8085e /rc.d | |
parent | 662cdad16a4202ea5e78b252a4a48456e7f3a334 (diff) | |
download | initscripts-ededc76f1ce174201feec08a6be4a84ca36d89b3.tar initscripts-ededc76f1ce174201feec08a6be4a84ca36d89b3.tar.gz initscripts-ededc76f1ce174201feec08a6be4a84ca36d89b3.tar.bz2 initscripts-ededc76f1ce174201feec08a6be4a84ca36d89b3.tar.xz initscripts-ededc76f1ce174201feec08a6be4a84ca36d89b3.zip |
don't bring down non-existent IPX nets
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/network | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index b6587fe3..cb3a9768 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -101,7 +101,9 @@ case "$1" in done case "$IPX" in yes|true) - /sbin/ipx_internal_net del + if [ "$IPXINTERNALNETNUM" != "0" ]; then + /sbin/ipx_internal_net del + fi ;; esac ./ifdown ifcfg-lo |