From cdf07b597098704251515ae63f687ac561a61c21 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Tue, 30 Nov 2010 15:40:44 -0600 Subject: localmount should only use the -O option for linux systems This fixes bug #347307. --- init.d/localmount.in | 7 +++++-- 1 file 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 -- cgit v1.2.3