diff options
Diffstat (limited to 'init.d/localmount.in')
-rw-r--r-- | init.d/localmount.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/init.d/localmount.in b/init.d/localmount.in index f4bf15f6..29e73486 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -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 |