diff options
author | Bernhard Rosenkraenzer <bero@redhat.com> | 2000-07-24 14:19:47 +0000 |
---|---|---|
committer | Bernhard Rosenkraenzer <bero@redhat.com> | 2000-07-24 14:19:47 +0000 |
commit | 47b097ca9827acb57ea5b601c29840912eae9873 (patch) | |
tree | 912f99254f1b4ce75a536436704e37884e389946 /rc.d/init.d/network | |
parent | 593106713b216730001a1e132f1eebb446cea623 (diff) | |
download | initscripts-47b097ca9827acb57ea5b601c29840912eae9873.tar initscripts-47b097ca9827acb57ea5b601c29840912eae9873.tar.gz initscripts-47b097ca9827acb57ea5b601c29840912eae9873.tar.bz2 initscripts-47b097ca9827acb57ea5b601c29840912eae9873.tar.xz initscripts-47b097ca9827acb57ea5b601c29840912eae9873.zip |
/etc/init.d -> /etc/rc.d/init.dr5-36
Diffstat (limited to 'rc.d/init.d/network')
-rwxr-xr-x | rc.d/init.d/network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 6c79c36b..30025a04 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -8,7 +8,7 @@ # probe: true # Source function library. -. /etc/init.d/functions +. /etc/rc.d/init.d/functions if [ ! -f /etc/sysconfig/network ]; then exit 0 @@ -88,7 +88,7 @@ case "$1" in SMBMTAB=`grep -v '^#' /proc/mounts | awk '{ if ($3 ~ /^smbfs$/ ) print $2}'` NCPMTAB=`grep -v '^#' /proc/mounts | awk '{ if ($3 ~ /^ncpfs$/ ) print $2}'` if [ -n "$NFSMTAB" -o -n "$SMBMTAB" -o -n "$NCPMTAB" ] ; then - /etc/init.d/netfs stop + /etc/rc.d/init.d/netfs stop fi fi |