From: Sebastian Harl Date: Sun, 15 Jul 2012 09:12:29 +0000 (+0200) Subject: collectd-core.collectd.init.d: Catch disabled state in start/restart. X-Git-Tag: collectd-5.1.0-3~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5fd4903ea0ddbec78be5a241c4de2ddb4a2e14f2;p=pkg-collectd.git collectd-core.collectd.init.d: Catch disabled state in start/restart. Don't exit with an error status in that case. Amongst others, this fixes an upgrade of collectd when the daemon is disabled. Thanks to Florian Ernst for reporting this and Evgeni Golov for providing (an early) patch! To let those changes to work correctly, don't use 'set -e' and 'exit 0' (at the end) in order to let return statuses propagate correctly. Closes: #681216 --- diff --git a/debian/changelog b/debian/changelog index 23ce540..1005cbe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,13 @@ collectd (5.1.0-3) UNRELEASED; urgency=low - Pass --rrdfilter and --rrdtool parameters to migrate-4-5.px in order to let the script find those binaries/scripts. (Closes: #681363) + * debian/collectd-core.collectd.init.d: + - Catch disabled state in start and restart and don't exit with an error + status. Amongst others, this fixes an upgrade of collectd when the + daemon is disabled. Thanks to Florian Ernst for reporting this and + Evgeni Golov for providing (an early) patch (Closes: #681216). + - Don't use 'set -e' and 'exit 0' (at the end) in order to let return + statuses propagate correctly. (cf. #681216) -- Sebastian Harl Thu, 12 Jul 2012 18:57:04 +0200 diff --git a/debian/collectd-core.collectd.init.d b/debian/collectd-core.collectd.init.d index 991d8b8..dc582e4 100755 --- a/debian/collectd-core.collectd.init.d +++ b/debian/collectd-core.collectd.init.d @@ -22,8 +22,6 @@ # the values in a variety of ways. ### END INIT INFO -set -e - . /lib/lsb/init-functions export PATH=/sbin:/bin:/usr/sbin:/usr/bin @@ -50,16 +48,6 @@ if [ -r /etc/default/$NAME ]; then . /etc/default/$NAME fi -if test "$DISABLE" != 0 -a "$1" == "start"; then - log_warning_msg "Not starting $DESC, disabled by /etc/default/$NAME." - exit 0 -fi - -if test ! -e "$CONFIGFILE" -a "$1" == "start"; then - log_warning_msg "Not starting $DESC, no configuration ($CONFIGFILE) found." - exit 0 -fi - if test "$ENABLE_COREFILES" == 1; then ulimit -c unlimited fi @@ -70,28 +58,41 @@ else _PIDFILE="$PIDFILE" fi +# return: +# 0 if config is fine +# 1 if there is a syntax error +# 2 if there is no configuration check_config() { + if test ! -e "$CONFIGFILE"; then + return 2 + fi if ! $DAEMON -t -C "$CONFIGFILE"; then return 1 fi + return 0 } +# return: +# 0 if the daemon has been started +# 1 if the daemon was already running +# 2 if the daemon could not be started +# 3 if the daemon was not supposed to be started d_start() { if test "$DISABLE" != 0; then # we get here during restart log_progress_msg "disabled by /etc/default/$NAME" - return 2 + return 3 fi if test ! -e "$CONFIGFILE"; then # we get here during restart log_progress_msg "disabled, no configuration ($CONFIGFILE) found" - return 2 + return 3 fi check_config rc="$?" - if test "$rc" -eq 1; then + if test "$rc" -ne 0; then log_progress_msg "not starting, configuration error" return 2 fi @@ -105,6 +106,7 @@ d_start() { --exec $DAEMON -- -C "$CONFIGFILE" -P "$_PIDFILE" \ || return 2 fi + return 0 } still_running_warning=" @@ -112,6 +114,10 @@ WARNING: $NAME might still be running. In large setups it might take some time to write all pending data to the disk. You can adjust the waiting time in /etc/default/collectd." +# return: +# 0 if the daemon has been stopped +# 1 if the daemon was already stopped +# 2 if daemon could not be stopped d_stop() { PID=$( cat "$_PIDFILE" 2> /dev/null ) || true @@ -148,6 +154,8 @@ case "$1" in case "$?" in 0|1) log_end_msg 0 ;; 2) log_end_msg 1 ;; + 3) log_end_msg 255; true ;; + *) log_end_msg 1 ;; esac ;; stop) @@ -178,7 +186,9 @@ case "$1" in d_start rc2="$?" case "$rc2" in - 0) log_end_msg 0 ;; + 0|1) log_end_msg 0 ;; + 2) log_end_msg 1 ;; + 3) log_end_msg 255; true ;; *) log_end_msg 1 ;; esac ;; @@ -193,7 +203,5 @@ case "$1" in ;; esac -exit 0 - # vim: syntax=sh noexpandtab sw=4 ts=4 :