From: Michael Prokop Date: Fri, 13 Jan 2017 12:56:19 +0000 (+0100) Subject: Drop grml_nocolors + grml_colors magic, instead rely on lsb-functions X-Git-Tag: v0.15.0~4 X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=95f4501e1eeb87e1bde757e263e1f30022aff56e Drop grml_nocolors + grml_colors magic, instead rely on lsb-functions grml-etc-core git commit 2ee956e includes color handling inside lsb-functions, simplify its usage inside grml-autoconfig's autoconfig.functions therefore. --- diff --git a/autoconfig.functions b/autoconfig.functions index 19a240d..ea17895 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -194,13 +194,10 @@ fi # {{{ source lsb-functions , color handling if checkbootparam 'nocolor'; then - RC_NOCOLOR=yes . /etc/grml/lsb-functions - . /etc/grml_nocolors einfo "Disabling colors in bootsequence as requested on commandline." ; eend 0 else . /etc/grml/lsb-functions - . /etc/grml_colors fi # }}}