- Properly implement "rclm_sensors status" (bnc#592273).

OBS-URL: https://build.opensuse.org/package/show/Base:System/sensors?expand=0&rev=18
This commit is contained in:
Jean Delvare 2010-04-13 11:20:10 +00:00 committed by Git OBS Bridge
parent e51ef46ace
commit 37b2664df5
2 changed files with 16 additions and 1 deletions

View File

@ -96,7 +96,17 @@ stop() {
}
dostatus() {
$PSENSORS
if test -s "$FANCONFIG" -a -x "$PFAN" ; then
echo -n "Checking for fan control daemon: "
/sbin/checkproc "$PFAN"
rc_status -v
fi
if test -e "$LOCK" ; then
$PSENSORS
else
rc_failed 3
fi
rc_status
}

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Apr 13 13:08:07 CEST 2010 - jdelvare@suse.de
- Properly implement "rclm_sensors status" (bnc#592273).
-------------------------------------------------------------------
Wed Mar 31 15:18:29 CEST 2010 - jdelvare@suse.de