diff options
author | Bill Nottingham <notting@redhat.com> | 2004-11-24 02:03:20 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-11-24 02:03:20 +0000 |
commit | 57778525e6d9af1185bf34af9e6fb083f8d4516a (patch) | |
tree | 885f06e6d7c9e14bf74e42f64e51b67a3760eb32 /rc.d/init.d | |
parent | b13728c31b0e0e84589234a25a5d4d72f3594155 (diff) | |
download | initscripts-57778525e6d9af1185bf34af9e6fb083f8d4516a.tar initscripts-57778525e6d9af1185bf34af9e6fb083f8d4516a.tar.gz initscripts-57778525e6d9af1185bf34af9e6fb083f8d4516a.tar.bz2 initscripts-57778525e6d9af1185bf34af9e6fb083f8d4516a.tar.xz initscripts-57778525e6d9af1185bf34af9e6fb083f8d4516a.zip |
don't mount GFS (#140281)
Diffstat (limited to 'rc.d/init.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 31a7762d..5df4a4b4 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -41,7 +41,7 @@ case "$1" in [ -n "$CIFSFSTAB" ] && action $"Mounting CIFS filesystems: " mount -a -t cifs [ -n "$NCPFSTAB" ] && action $"Mounting NCP filesystems: " mount -a -t ncpfs touch /var/lock/subsys/netfs - action $"Mounting other filesystems: " mount -a -t nonfs,nfs4,smbfs,cifs,ncpfs + action $"Mounting other filesystems: " mount -a -t nonfs,nfs4,smbfs,cifs,ncpfs,gfs ;; stop) # Unmount loopback stuff first |