X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Ffiles%2Fetc%2Flsb-base-logging.sh%2FGRMLBASE;h=ec31701212fa40d33f271ad89ee83d61df2da90c;hp=d7c4223a5a04704f1c3cda7d79299637a2d4ba42;hb=9f40afc7b4ba29d390cc252b5a3f263c076cbaa1;hpb=00b6072d4b2e3f5a061c2b6811822fbdc5d489f0 diff --git a/etc/grml/fai/config/files/etc/lsb-base-logging.sh/GRMLBASE b/etc/grml/fai/config/files/etc/lsb-base-logging.sh/GRMLBASE index d7c4223..ec31701 100644 --- a/etc/grml/fai/config/files/etc/lsb-base-logging.sh/GRMLBASE +++ b/etc/grml/fai/config/files/etc/lsb-base-logging.sh/GRMLBASE @@ -2,12 +2,17 @@ # ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/20-sudo script, using # ${GRML_FAI_CONFIG}/config/files/etc/lsb-base-logging.sh/GRMLBASE +# override output of the status on the left side of the terminal +# introduced in lsb-base >= 4.1+Debian1 +log_end_msg_pre() { :; } +log_action_msg_pre() { :; } + if log_use_fancy_output; then - __LSB_PFX="$(tput -S << EOGREEN + __LSB_PFX="$($TPUT -S << EOGREEN bold setaf 2 EOGREEN - ) * $(tput -S << EONORMAL + ) * $($TPUT -S << EONORMAL sgr0 op EONORMAL @@ -19,4 +24,9 @@ fi log_daemon_msg_pre() { printf "${__LSB_PFX}" } - +log_action_msg() { + printf "${__LSB_PFX}$@." +} +log_action_begin_msg() { + printf "${__LSB_PFX}$@... " +}