From 9308cac661951d0ee60936aaf02d655cb0846af2 Mon Sep 17 00:00:00 2001 From: mtm Date: Sat, 5 Jul 2008 15:19:58 +0000 Subject: 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. --- etc/rc.d/mountcritlocal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/rc.d') diff --git a/etc/rc.d/mountcritlocal b/etc/rc.d/mountcritlocal index c25d62d..49f8f06 100755 --- a/etc/rc.d/mountcritlocal +++ b/etc/rc.d/mountcritlocal @@ -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) -- cgit v1.1