X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Flsb-functions;h=de1cd4cd933295e989ec732b0d280d04a0609a12;hb=274a68ff62ffdef8754c2b73bca957f81e16661a;hp=4dc84413977baa621afe1a8e7a91b4afbda5f1c0;hpb=9112e5bdd49f8f4f4abf79c219af7c54b57cfb80;p=grml-etc-core.git diff --git a/etc/grml/lsb-functions b/etc/grml/lsb-functions index 4dc8441..de1cd4c 100644 --- a/etc/grml/lsb-functions +++ b/etc/grml/lsb-functions @@ -30,12 +30,6 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. -if [ "$(cat /proc/1/comm 2>/dev/null)" = "systemd" ] ; then - SYSTEMD=true -else - SYSTEMD=false -fi - # log_*() functions {{{ TPUT="${TPUT:-"/usr/bin/tput"}" @@ -419,9 +413,9 @@ ewend() { } #}}} -# if we're using systemd then redfine functions for -# output in systemd style -if $SYSTEMD ; then +# if we're using systemd then redefine functions +# for output in systemd style +if [ "$(cat /proc/1/comm 2>/dev/null)" = "systemd" ] ; then einfo() { printf "[ ${GREEN}OK${NORMAL} ] %s\n" "$*" } @@ -439,7 +433,4 @@ if $SYSTEMD ; then } fi -# don't expose unneeded local variables -unset SYSTEMD - # vim: ft=sh tw=80 ts=4 foldmethod=marker