mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 06:42:45 +00:00
Back out rev 1.268.
Requested by: wollman, rwatson
This commit is contained in:
parent
000d56193c
commit
2684d2270d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=77974
31
etc/rc
31
etc/rc
@ -261,15 +261,8 @@ esac
|
||||
|
||||
umount -a >/dev/null 2>&1
|
||||
|
||||
# Mount everything except remote filesystems.
|
||||
remotefs_types='nfs:NFS smbfs:SMB'
|
||||
mount_excludes='no'
|
||||
for i in ${remotefs_types}; do
|
||||
fstype=${i%:*}
|
||||
mount_excludes="${mount_excludes}${fstype},"
|
||||
done
|
||||
mount_excludes=${mount_excludes%,}
|
||||
mount -a -t ${mount_excludes}
|
||||
# Mount everything except nfs filesystems.
|
||||
mount -a -t nonfs
|
||||
|
||||
case $? in
|
||||
0)
|
||||
@ -404,18 +397,14 @@ case ${ipv6_enable} in
|
||||
;;
|
||||
esac
|
||||
|
||||
# Mount remote filesystems if present in /etc/fstab
|
||||
for i in ${remotefs_types}; do
|
||||
fstype=${i%:*}
|
||||
fsdecr=${i#*:}
|
||||
case "`mount -d -a -t ${fstype}`" in
|
||||
*mount_${fstype}*)
|
||||
echo -n "Mounting ${fsdecr} file systems:"
|
||||
mount -a -t ${fstype}
|
||||
echo '.'
|
||||
;;
|
||||
esac
|
||||
done
|
||||
# Mount NFS filesystems if present in /etc/fstab
|
||||
case "`mount -d -a -t nfs 2> /dev/null`" in
|
||||
*mount_nfs*)
|
||||
echo -n 'Mounting NFS file systems:'
|
||||
mount -a -t nfs
|
||||
echo '.'
|
||||
;;
|
||||
esac
|
||||
|
||||
# Whack the pty perms back into shape.
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user