]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Changes, that make the network output more beautiful.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 25 Jul 2009 21:10:37 +0000 (23:10 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 25 Jul 2009 21:10:37 +0000 (23:10 +0200)
src/initscripts/lsb/init-functions

index b37eeb32fb3ad89bf8430cf0b9363df3aa2c9133..e4025b231e9ebabcef9a7e4481963c2cc1d696ed 100644 (file)
@@ -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