aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrc.d/init.d/netfs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs
index 81784124..263accff 100755
--- a/rc.d/init.d/netfs
+++ b/rc.d/init.d/netfs
@@ -37,10 +37,10 @@ case "$1" in
[ -n "$NFSFSTAB" ] &&
{
[ ! -f /var/lock/subsys/rpcbind ] && service rpcbind start
- action $"Mounting NFS filesystems: " mount -a -t nfs,nfs4
+ echo $"NFS filesystems queued to be mounted"
}
- [ -n "$CIFSFSTAB" ] && action $"Mounting CIFS filesystems: " mount -a -t cifs
- [ -n "$NCPFSTAB" ] && action $"Mounting NCP filesystems: " mount -a -t ncpfs
+ [ -n "$CIFSFSTAB" ] && echo $"CIFS filesystems queued to be mounted"
+ [ -n "$NCPFSTAB" ] && echo $"NCP filesystems queued to be mounted"
[ -n "$NETDEVFSTAB" ] &&
{
if [ -f /etc/mdadm.conf ] && [ -x /sbin/mdadm ]; then
@@ -99,7 +99,7 @@ case "$1" in
}
touch /var/lock/subsys/netfs
# The 'no' applies to all listed filesystem types. See mount(8).
- action $"Mounting other filesystems: " mount -a -t nonfs,nfs4,cifs,ncpfs,gfs2
+ action $"Mounting filesystems: " mount -a -t nogfs2
;;
stop)
# Unmount loopback stuff first