Revert "local/netmount: remove uses of -O [no]_netdev"

This reverts commit 2a439c85bd.
There is another use case for -O involving iscsi, so we can't remove it.
This commit is contained in:
William Hubbs
2015-10-01 17:16:14 -05:00
parent 3b6a6df4b5
commit dac5966ca4
4 changed files with 20 additions and 14 deletions

View File

@@ -15,18 +15,19 @@ depend()
start()
{
# Mount local filesystems in /etc/fstab.
local types="noproc" x= rc=
local types="noproc" x= no_netdev= rc=
for x in $net_fs_list $extra_net_fs_list; do
types="${types},no${x}"
done
if [ "$RC_UNAME" = Linux ]; then
no_netdev="-O no_netdev"
if mountinfo -q /usr; then
touch "$RC_SVCDIR"/usr_premounted
fi
fi
ebegin "Mounting local filesystems"
mount -at "$types"
mount -at "$types" $no_netdev
eend $? "Some local filesystem failed to mount"
rc=$?
if [ "$RC_UNAME" != Linux ]; then