diff options
author | Bill Nottingham <notting@redhat.com> | 2004-11-24 02:04:39 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-11-24 02:04:39 +0000 |
commit | 8c690d3576a71e55304951a1a6d374495cf1c4f9 (patch) | |
tree | fb5c0263074d3e6e867c5653efc7c8bba5ff2ce7 /rc.d | |
parent | 8edc0537bebb743b31fb7aebc1c3d725aa998535 (diff) | |
download | initscripts-8c690d3576a71e55304951a1a6d374495cf1c4f9.tar initscripts-8c690d3576a71e55304951a1a6d374495cf1c4f9.tar.gz initscripts-8c690d3576a71e55304951a1a6d374495cf1c4f9.tar.bz2 initscripts-8c690d3576a71e55304951a1a6d374495cf1c4f9.tar.xz initscripts-8c690d3576a71e55304951a1a6d374495cf1c4f9.zip |
don't mount GFS (#140281)
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 204e262b..02afab77 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -38,7 +38,7 @@ case "$1" in [ -n "$SMBFSTAB" ] && action $"Mounting SMB filesystems: " mount -a -t smbfs [ -n "$NCPFSTAB" ] && action $"Mounting NCP filesystems: " mount -a -t ncpfs touch /var/lock/subsys/netfs - action $"Mounting other filesystems: " mount -a -t nonfs,smbfs,ncpfs + action $"Mounting other filesystems: " mount -a -t nonfs,smbfs,ncpfs,gfs ;; stop) # Unmount loopback stuff first |