diff options
| author | Mike Makonnen <mtm@FreeBSD.org> | 2008-07-05 15:19:58 +0000 |
|---|---|---|
| committer | Mike Makonnen <mtm@FreeBSD.org> | 2008-07-05 15:19:58 +0000 |
| commit | 8144c9ac9baa0147c7ca48e9c00459030a184451 (patch) | |
| tree | bcebe3f797da6fc56f9bbebbd2f95b1905872c5f /etc/rc.d | |
| parent | c5a80a7a3be28c6aab82cf57d59ee5621e5baad9 (diff) | |
Notes
Diffstat (limited to 'etc/rc.d')
| -rwxr-xr-x | etc/rc.d/mountcritlocal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/mountcritlocal b/etc/rc.d/mountcritlocal index c25d62d5dd94..49f8f06bb8aa 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) |
