Make localmount and netmount always succeed on non-linux

This commit is contained in:
William Hubbs 2015-08-20 19:01:23 -05:00
parent 2a439c85bd
commit b652752339
2 changed files with 14 additions and 1 deletions

View File

@ -15,7 +15,7 @@ depend()
start()
{
# Mount local filesystems in /etc/fstab.
local types="noproc" x=
local types="noproc" x= rc=
for x in $net_fs_list $extra_net_fs_list; do
types="${types},no${x}"
done
@ -28,6 +28,13 @@ start()
ebegin "Mounting local filesystems"
mount -at "$types"
eend $? "Some local filesystem failed to mount"
rc=$?
if [ "$RC_UNAME" != Linux ]; then
rc=0
elif [ "$rc" = 64 ]; then
rc=0
fi
return $rc
}
stop()

View File

@ -23,6 +23,12 @@ start()
mount -at $fs
rc=$?
ewend $rc "Could not mount all network filesystems"
if [ "$RC_UNAME" != Linux ]; then
rc=0
elif [ "$rc" = 64 ]; then
rc=0
fi
return $rc
}
stop()