aboutsummaryrefslogtreecommitdiff
path: root/plugins-scripts
diff options
context:
space:
mode:
authorGravatar RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> 2021-12-20 00:08:24 +0100
committerGravatar RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> 2021-12-20 00:08:24 +0100
commitc1bf69c3a6a52c714e27107219e402bbecd7c000 (patch)
tree03138b3e24de15ec8f3bb77b334b1a2fe506bc36 /plugins-scripts
parent5a81bd813ecae7c6492e4eac001331973d9594b3 (diff)
downloadmonitoring-plugins-c1bf69c3a6a52c714e27107219e402bbecd7c000.tar.gz
Apparently Dash is not Bash, so -v does not work
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-xplugins-scripts/check_log.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_log.sh b/plugins-scripts/check_log.sh
index d71f420e..fdb57416 100755
--- a/plugins-scripts/check_log.sh
+++ b/plugins-scripts/check_log.sh
@@ -212,7 +212,7 @@ elif [ ! -r "$logfile" ] ; then
exit "$STATE_UNKNOWN"
fi
# If no oldlog was given this can not work properly, abort then
-if [ ! -v oldlog ]; then
+if [ -z "$oldlog" ]; then
echo "Oldlog parameter is needed"
exit $STATE_UNKNOWN
fi