summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/localmount.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/init.d/localmount.in b/init.d/localmount.in
index c9e6653..1a7209c 100644
--- a/init.d/localmount.in
+++ b/init.d/localmount.in
@@ -14,13 +14,16 @@ depend()
start()
{
# Mount local filesystems in /etc/fstab.
- local types="noproc" x=
+ local types="noproc" x= no_netdev=
for x in $net_fs_list; do
types="${types},${x}"
done
+ if [ "$RC_UNAME" = Linux ]; then
+ no_netdev="-O no_netdev"
+ fi
ebegin "Mounting local filesystems"
- mount -at "$types" -O no_netdev
+ mount -at "$types" $no_netdev
eend $? "Some local filesystem failed to mount"
# Always return 0 - some local mounts may not be critical for boot