From: Michael Prokop Date: Mon, 17 Sep 2007 21:39:33 +0000 (+0200) Subject: /etc/grml/lsb-functions: another few bugfixes by ft (thanks) X-Git-Tag: 0.3.30 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=refs%2Ftags%2F0.3.30;hp=-c;p=grml-etc-core.git /etc/grml/lsb-functions: another few bugfixes by ft (thanks) --- 157adfaa3b8d6182cffdf96e88d785bdef9c852a diff --combined debian/changelog index a142840,43da131..75d62db --- a/debian/changelog +++ b/debian/changelog @@@ -1,3 -1,10 +1,17 @@@ ++grml-etc-core (0.3.30) unstable; urgency=low ++ ++ [ Frank Terbeck ] ++ * /etc/grml/lsb-functions: another few bugfixes ++ ++ -- Michael Prokop Mon, 17 Sep 2007 23:39:11 +0200 ++ + grml-etc-core (0.3.29) unstable; urgency=low + + [ Frank Terbeck ] + * /etc/grml/lsb-functions: another bugfix + + -- Michael Prokop Mon, 17 Sep 2007 18:33:30 +0200 + grml-etc-core (0.3.28) unstable; urgency=low [ Frank Terbeck ] diff --combined etc/grml/lsb-functions index 895e578,07abdd3..2aa0c77 --- a/etc/grml/lsb-functions +++ b/etc/grml/lsb-functions @@@ -157,7 -157,7 +157,7 @@@ if [ -z "${COLS}" ] || [ "${COLS}" -le fi if [ "${RC_ENDCOL}" = "yes" ]; then - ENDCOL="[$(( ${COLS} - 8 ))G" + ENDCOL="[$(( ${COLS} - 8 ))G" else ENDCOL='' fi @@@ -182,11 -182,12 +182,11 @@@ esyslog() local pri local tag + [ "$#" -le 2 ] && return 0 if [ -x /usr/bin/logger ] ; then pri="$1" tag="$2" - shift 2 - [ "$#" -eq 0 ] && return 0 /usr/bin/logger -p "${pri}" -t "${tag}" -- "$@" fi @@@ -199,7 -200,7 +199,7 @@@ # increase the indent used for e-commands. # eindent() { - local i="$1" + local i="${1:-0}" [ "$i" -gt 0 ] || i="${RC_DEFAULT_INDENT}" esetdent $(( ${#RC_INDENTATION} + $i )) } @@@ -209,7 -210,7 +209,7 @@@ # decrease the indent used for e-commands. # eoutdent() { - local i="$1" + local i="${1:-0}" [ "$i" -gt 0 ] || i="${RC_DEFAULT_INDENT}" esetdent $(( ${#RC_INDENTATION} - $i )) } @@@ -220,7 -221,7 +220,7 @@@ # num defaults to 0 # esetdent() { - local i="$1" + local i="${1:-0}" [ "$i" -lt 0 ] && i=0 RC_INDENTATION="$(printf "%${i}s" '')" }