From: Michael Tremer Date: Sat, 25 Jul 2009 21:10:37 +0000 (+0200) Subject: Changes, that make the network output more beautiful. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bb1a80ca21f3ed5256c4d4595b9993ff061f4f5;p=ipfire-3.x.git Changes, that make the network output more beautiful. --- diff --git a/src/initscripts/lsb/init-functions b/src/initscripts/lsb/init-functions index b37eeb32f..e4025b231 100644 --- a/src/initscripts/lsb/init-functions +++ b/src/initscripts/lsb/init-functions @@ -441,7 +441,7 @@ local exitstatus="0" ################################################################################ log_success_msg() { - echo -n -e "${PREFIX_SUCCESS}${@}" + echo -n -e "${PREFIX_SUCCESS}${INDENT}${@}" echo -e "${SET_COL}${BRACKET}[${SUCCESS} OK ${BRACKET}]${NORMAL}" if [ "${BOOTLOG_ENAB}" = "yes" ]; then if [ $( hostname ) = "(none)" ]; then @@ -468,7 +468,7 @@ log_success_msg() ################################################################################ log_failure_msg() { - echo -n -e "${PREFIX_FAILURE}${@}" + echo -n -e "${PREFIX_FAILURE}${INDENT}${@}" echo -e "${SET_COL}${BRACKET}[${FAILURE} FAIL ${BRACKET}]${NORMAL}" if [ "${BOOTLOG_ENAB}" = "yes" ]; then if [ $( hostname ) = "(none)" ]; then @@ -495,7 +495,7 @@ log_failure_msg() ################################################################################ log_warning_msg() { - echo -n -e "${PREFIX_WARNING}${@}" + echo -n -e "${PREFIX_WARNING}${INDENT}${@}" echo -e "${SET_COL}${BRACKET}[${WARNING} WARN ${BRACKET}]${NORMAL}" if [ "${BOOTLOG_ENAB}" = "yes" ]; then if [ $( hostname ) = "(none)" ]; then