diff options
author | Tom Gundersen <teg@jklm.no> | 2012-07-17 21:17:46 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2012-07-17 21:17:46 +0200 |
commit | 072a18662e7eb082eebfc24e8ad6b7c32439afe4 (patch) | |
tree | 1a3e999696711eb890c57bf57f53f301903f5e7d /functions | |
parent | e9b4330e9410f43dfe8b95b892b735175774f113 (diff) |
status: be verbose by default
Add a new option '-q' which allows status() to be shut up, should it be needed.
Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -171,13 +171,13 @@ stat_die() { } status() { - [[ $1 = '-v' ]] && { local v=1; shift; } + [[ $1 = '-q' ]] && { local quiet=1; shift; } stat_busy "$1" shift - if (( v )); then - "$@" - else + if (( quiet )); then "$@" &>/dev/null + else + "$@" fi local ret=$? (( ret == 0 )) && stat_done || stat_fail @@ -373,7 +373,7 @@ udevd_modprobe() { stat_done # Load modules from the MODULES array and modules-load.d - status -v "Loading user-specified modules" load_modules + status "Loading user-specified modules" load_modules status "Waiting for udev uevents to be processed" \ udevadm settle @@ -645,7 +645,7 @@ umount_all() { } remove_leftover() { - status -v 'Removing leftover files' systemd-tmpfiles --create --remove --clean + status 'Removing leftover files' systemd-tmpfiles --create --remove --clean } bootlogd_stop() { |