commit: d5dfc6d529115a3216e70491173468e8edfb1d63 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com> AuthorDate: Sun Jan 25 22:23:47 2015 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Wed Feb 18 16:41:27 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=d5dfc6d5
local: fix redirections The local service now redirects stdout and stderr for the scripts it runs to /dev/null unless it is run in verbose mode. X-Gentoo-Bug: 537444 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=537444 --- init.d/local.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/init.d/local.in b/init.d/local.in index 180735d..63f8598 100644 --- a/init.d/local.in +++ b/init.d/local.in @@ -14,12 +14,13 @@ start() { ebegin "Starting local" - local file has_errors=0 retval + local file has_errors=0 redirect retval + yesno $rc_verbose || redirect='> /dev/null 2>&1' eindent for file in @SYSCONFDIR@/local.d/*.start; do if [ -x "${file}" ]; then vebegin "Executing \"${file}\"" - "${file}" 2>&1 >/dev/null + "${file}" $redirect retval=$? if [ ${retval} -ne 0 ]; then has_errors=1 @@ -52,12 +53,13 @@ stop() { ebegin "Stopping local" - local file has_errors=0 retval + local file has_errors=0 redirect retval + yesno $rc_verbose || redirect='> /dev/null 2>&1' eindent for file in @SYSCONFDIR@/local.d/*.stop; do if [ -x "${file}" ]; then vebegin "Executing \"${file}\"" - "${file}" 2>&1 >/dev/null + "${file}" $redirect retval=$? if [ ${retval} -ne 0 ]; then has_errors=1
