diff options
author | William Hubbs <williamh@gentoo.org> | 2010-11-15 12:01:48 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-11-15 12:01:48 -0600 |
commit | ac37dc276432348e7e389e271b79bdafb0f18c83 (patch) | |
tree | a6a7500803bba4b928737b79d0c637a53aae530a /init.d | |
parent | 9285cb3392e99eb34a1cfd7f427403c8d483916a (diff) |
do not mount local file systems with the _netdev option in fstab
This fixes #344947.
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/localmount.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/localmount.in b/init.d/localmount.in index a4d11165..c9e66539 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -20,7 +20,7 @@ start() done ebegin "Mounting local filesystems" - mount -at "$types" + mount -at "$types" -O no_netdev eend $? "Some local filesystem failed to mount" # Always return 0 - some local mounts may not be critical for boot |