diff options
author | Bernd Arnold <wopfel@gmail.com> | 2018-06-17 07:42:25 (GMT) |
---|---|---|
committer | Bernd Arnold <wopfel@gmail.com> | 2018-06-17 07:42:25 (GMT) |
commit | 6a8564fb44ab6914dcc8ec63e8af6477803da080 (patch) | |
tree | 326dc798e9c9b6dc60f5862e1e6fee34e7603875 /plugins-scripts/check_uptime.pl | |
parent | 37f9b45266acfeb45157d3c27a65979b33c57df7 (diff) | |
download | monitoring-plugins-6a8564fb44ab6914dcc8ec63e8af6477803da080.tar.gz |
Fixed error message, added commentrefs/pull/1538/head
Diffstat (limited to 'plugins-scripts/check_uptime.pl')
-rwxr-xr-x | plugins-scripts/check_uptime.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins-scripts/check_uptime.pl b/plugins-scripts/check_uptime.pl index ed859ab..4c9f22d 100755 --- a/plugins-scripts/check_uptime.pl +++ b/plugins-scripts/check_uptime.pl | |||
@@ -236,8 +236,9 @@ sub process_arguments(){ | |||
236 | print "Upper Warning (-w) cannot be greater than Critical (-c)!\n"; | 236 | print "Upper Warning (-w) cannot be greater than Critical (-c)!\n"; |
237 | exit $ERRORS{'UNKNOWN'}; | 237 | exit $ERRORS{'UNKNOWN'}; |
238 | } | 238 | } |
239 | # No "<=" since both values are zero if no range (only upper threshold values) is given | ||
239 | if ( $lower_warn_threshold < $lower_crit_threshold ) { | 240 | if ( $lower_warn_threshold < $lower_crit_threshold ) { |
240 | print "Lower Warning (-w) cannot be greater than Critical (-c)!\n"; | 241 | print "Lower Warning (-w) cannot be less than Critical (-c)!\n"; |
241 | exit $ERRORS{'UNKNOWN'}; | 242 | exit $ERRORS{'UNKNOWN'}; |
242 | } | 243 | } |
243 | 244 | ||