Source: lm-sensors Source-Version: 3.4.0-2 Severity: wishlist Tags: patch Hi!
The attached patch fixes the LSB init script to have more consistent output. Thanks, Guillem
From 4b7b0923e52a9badaaaee1fdef2938dce7c68f3a Mon Sep 17 00:00:00 2001 From: Guillem Jover <[email protected]> Date: Sat, 30 Apr 2016 15:56:15 +0200 Subject: [PATCH] lm-sensors: Fix LSB init output --- debian/lm-sensors.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/lm-sensors.init b/debian/lm-sensors.init index e6db98b..3f9ed72 100644 --- a/debian/lm-sensors.init +++ b/debian/lm-sensors.init @@ -20,7 +20,7 @@ test -x $PROGRAM || exit 0 case "$1" in start) - log_begin_msg "Setting sensors limits" + log_action_begin_msg "Setting sensors limits" if [ "$VERBOSE" = "no" ]; then /usr/bin/sensors -s 1> /dev/null 2> /dev/null /usr/bin/sensors 1> /dev/null 2> /dev/null @@ -28,7 +28,7 @@ case "$1" in /usr/bin/sensors -s /usr/bin/sensors > /dev/null fi - log_end_msg 0 + log_action_end_msg 0 ;; stop) ;; -- 2.8.1

