From 3dc677e4f1f990e7b26bc714a02608070379cf85 Mon Sep 17 00:00:00 2001 From: MisterMountain Date: Tue, 11 Apr 2023 17:11:06 +0200 Subject: fixed the identation (and also patched -V on check_oracle to behave exactly like --version again) diff --git a/plugins-scripts/check_oracle.sh b/plugins-scripts/check_oracle.sh index f340b97..d58cfbe 100755 --- a/plugins-scripts/check_oracle.sh +++ b/plugins-scripts/check_oracle.sh @@ -86,20 +86,20 @@ esac # Information options case "$cmd" in --help) - print_help + print_help exit "$STATE_OK" ;; -h) - print_help + print_help exit "$STATE_OK" ;; --version) - print_revision "$PROGNAME" "$REVISION" + print_revision "$PROGNAME" "$REVISION" exit "$STATE_UNKNOWN" ;; -V) - print_revision "$PROGNAME" "$REVISION" - exit "$STATE_OK" + print_revision "$PROGNAME" "$REVISION" + exit "$STATE_UNKNOWN" ;; esac diff --git a/plugins-scripts/check_sensors.sh b/plugins-scripts/check_sensors.sh index 3c4cf01..adbfc53 100755 --- a/plugins-scripts/check_sensors.sh +++ b/plugins-scripts/check_sensors.sh @@ -38,7 +38,7 @@ case "$1" in ;; -V) print_revision "$PROGNAME" "$REVISION" - exit "$STATE_OK" + exit "$STATE_UNKNOWN" ;; *) sensordata=$(sensors 2>&1) -- cgit v0.10-9-g596f