diff options
author | Bill Nottingham <notting@redhat.com> | 2004-01-27 20:24:12 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-01-27 20:24:12 +0000 |
commit | 842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1 (patch) | |
tree | 69b762acd13b0a77d17d63e01774232a7e20a7da /rc.d/rc.sysinit | |
parent | 3b07364ff801cfd96954ee148a067a3907aded9e (diff) | |
download | initscripts-842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1.tar initscripts-842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1.tar.gz initscripts-842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1.tar.bz2 initscripts-842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1.tar.xz initscripts-842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1.zip |
NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 63ca7681..25f35cd2 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -260,7 +260,7 @@ fi _RUN_QUOTACHECK=0 ROOTFSTYPE=`awk '/ \/ / && ($3 !~ /rootfs/) { print $3 }' /proc/mounts` -if [ -z "$fastboot" -a "X$ROOTFSTYPE" != "Xnfs" ]; then +if [ -z "$fastboot" -a "X$ROOTFSTYPE" != "Xnfs" -a "X$ROOTFSTYPE" != "Xnfs4" ]; then STRING=$"Checking root filesystem" echo $STRING @@ -582,7 +582,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,smbfs,ncpfs -O no_netdev +action $"Mounting local filesystems: " mount -a -t nonfs,nonfs4,smbfs,ncpfs -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 |