summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz <12514511+RincewindsHat@users.noreply.github.com>2021-12-21 09:57:53 (GMT)
committerGitHub <noreply@github.com>2021-12-21 09:57:53 (GMT)
commit78a999edd4dd3305ef8fa3e06c43f6a893fb6fea (patch)
treeb29aa6e0f4298780923bd6c689d5b93d9b54b724
parentebf5cd2afef33aa4e6b680a88deb804d104c68f5 (diff)
parent763b7ab0c491cdc47442010374454532bfbe41dc (diff)
downloadmonitoring-plugins-78a999e.tar.gz
Merge pull request #1679 from RincewindsHat/shell_check_check_sensors.sh
check_sensors.sh: Make shellcheck happier
-rwxr-xr-xplugins-scripts/check_sensors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_sensors.sh b/plugins-scripts/check_sensors.sh
index 9a6cf5d..ab4e726 100755
--- a/plugins-scripts/check_sensors.sh
+++ b/plugins-scripts/check_sensors.sh
@@ -46,7 +46,7 @@ case "$1" in
46 if test ${status} -eq 127; then 46 if test ${status} -eq 127; then
47 text="SENSORS UNKNOWN - command not found (did you install lmsensors?)" 47 text="SENSORS UNKNOWN - command not found (did you install lmsensors?)"
48 exit=$STATE_UNKNOWN 48 exit=$STATE_UNKNOWN
49 elif test ${status} -ne 0; then 49 elif test "${status}" -ne 0; then
50 text="WARNING - sensors returned state $status" 50 text="WARNING - sensors returned state $status"
51 exit=$STATE_WARNING 51 exit=$STATE_WARNING
52 elif echo "${sensordata}" | egrep ALARM > /dev/null; then 52 elif echo "${sensordata}" | egrep ALARM > /dev/null; then