diff options
author | Roy Marples <roy@marples.name> | 2007-07-08 12:59:58 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-07-08 12:59:58 +0000 |
commit | 87d1a3be19e0cbba1510ca7b3d4d8e7e347d5cd1 (patch) | |
tree | 74098147c707fd1f89407b4d65caa6f591cd2e36 /init.d/netmount | |
parent | 69c459578e3b10f7caa2b82a304e728e31969ca5 (diff) |
Fix netmount - thanks to Hollow
Diffstat (limited to 'init.d/netmount')
-rwxr-xr-x | init.d/netmount | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/netmount b/init.d/netmount index 28c65489..a2f71302 100755 --- a/init.d/netmount +++ b/init.d/netmount @@ -68,7 +68,7 @@ stop() { eend ${retval} "Failed to simply unmount filesystems" if [ ${retval} -ne 0 ] ; then - . "${RC_SVCLIB}/sh/rc-mount.sh" + . "${RC_LIBDIR}/sh/rc-mount.sh" eindent fs= for x in ${RC_NET_FS_LIST} ; do @@ -76,7 +76,7 @@ stop() { done do_unmount "umount" "" "" "^(${fs})$" retval=$? - eoutent + eoutdent fi return ${retval} |