diff options
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} |