There's no need to announce that we're mounting local filesystems when

running in quiet mode since if we fail to mount any of them the boot
process gets interrupted.
This commit is contained in:
Mike Makonnen 2008-07-05 15:19:58 +00:00
parent c5a80a7a3b
commit 8144c9ac9b

View File

@ -28,7 +28,7 @@ mountcritlocal_start()
esac
# Mount everything except nfs filesystems.
echo -n 'Mounting local file systems:'
[ -z "${rc_quiet}" ] && echo -n 'Mounting local file systems:'
mount_excludes='no'
for i in ${netfs_types}; do
fstype=${i%:*}
@ -37,7 +37,7 @@ mountcritlocal_start()
mount_excludes=${mount_excludes%,}
mount -a -t ${mount_excludes}
err=$?
echo '.'
[ -z "${rc_quiet}" ] && echo '.'
case ${err} in
0)