diff options
author | Bill Nottingham <notting@redhat.com> | 2004-05-21 17:28:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-05-21 17:28:54 +0000 |
commit | 3f36d67a6b8f2899f86ff4158cae810824b74c00 (patch) | |
tree | 2b3755479318d277af60a67caf27cc1c7e1b0280 /rc.d/rc.sysinit | |
parent | 6371b60ba17b4c00e933357545723b606316fe05 (diff) | |
download | initscripts-3f36d67a6b8f2899f86ff4158cae810824b74c00.tar initscripts-3f36d67a6b8f2899f86ff4158cae810824b74c00.tar.gz initscripts-3f36d67a6b8f2899f86ff4158cae810824b74c00.tar.bz2 initscripts-3f36d67a6b8f2899f86ff4158cae810824b74c00.tar.xz initscripts-3f36d67a6b8f2899f86ff4158cae810824b74c00.zip |
don't mount cifs (#122501)
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 79fe39f6..1e9d9b59 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -605,7 +605,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 -O no_netdev +action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs -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 |