diff options
author | Bill Nottingham <notting@redhat.com> | 2004-06-30 19:40:44 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-06-30 19:40:44 +0000 |
commit | 47801fbecd8d55722db525b5a1a17fe8cdbefa15 (patch) | |
tree | ff6d31980e3760efc1134e09f8782e8f5cf59363 /rc.d/rc.sysinit | |
parent | 0923449476904f0431ae92b3d4a317a846ee0615 (diff) | |
download | initscripts-47801fbecd8d55722db525b5a1a17fe8cdbefa15.tar initscripts-47801fbecd8d55722db525b5a1a17fe8cdbefa15.tar.gz initscripts-47801fbecd8d55722db525b5a1a17fe8cdbefa15.tar.bz2 initscripts-47801fbecd8d55722db525b5a1a17fe8cdbefa15.tar.xz initscripts-47801fbecd8d55722db525b5a1a17fe8cdbefa15.zip |
don't mount gfs filesystems in rc.sysinit
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index ef8b5180..61b340cf 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -611,7 +611,7 @@ fi # Mount all other filesystems (except for NFS and /proc, which is already # mounted). Contrary to standard usage, # filesystems are NOT unmounted in single user mode. -action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs -O no_netdev +action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs -O no_netdev # Start the graphical boot, if necessary and not done yet. if fgrep rhgb /proc/cmdline > /dev/null 2>&1 && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then |