summaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-07-05 14:33:21 -0500
committerWilliam Hubbs <williamh@gentoo.org>2011-07-05 18:41:33 -0500
commite8e86b96dc8abbdfb7069a267873ef2950eb84cb (patch)
tree40e8e3cf073d57e2722b57a23cb152faead375c9 /sh
parent48dcc55b65c6e62d32b9c6a5ec69e67081e939ae (diff)
downloadopenrc-e8e86b96dc8abbdfb7069a267873ef2950eb84cb.tar.gz
openrc-e8e86b96dc8abbdfb7069a267873ef2950eb84cb.tar.bz2
openrc-e8e86b96dc8abbdfb7069a267873ef2950eb84cb.tar.xz
fix issue with extra_net_fs_list
The extra_net_fs_list variable was not being included as it should have been for the net file systems because it was being expanded before it was set by the user. X-Gentoo-Bug: 374133 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=374133
Diffstat (limited to 'sh')
-rw-r--r--sh/rc-functions.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in
index 02f84b4..50ba20b 100644
--- a/sh/rc-functions.sh.in
+++ b/sh/rc-functions.sh.in
@@ -39,7 +39,7 @@ stop_addon()
}
net_fs_list="afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre
-ncpfs nfs nfs4 ocfs2 shfs smbfs $extra_net_fs_list"
+ncpfs nfs nfs4 ocfs2 shfs smbfs"
is_net_fs()
{
[ -z "$1" ] && return 1