summaryrefslogtreecommitdiffstats
path: root/plugins-scripts
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-xplugins-scripts/check_ntp.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins-scripts/check_ntp.pl b/plugins-scripts/check_ntp.pl
index cd02d47..8b5fe4d 100755
--- a/plugins-scripts/check_ntp.pl
+++ b/plugins-scripts/check_ntp.pl
@@ -216,7 +216,9 @@ while (<NTPDATE>) {
216 216
217 # An offset of 0.000000 with an error is probably bogus. Actually, 217 # An offset of 0.000000 with an error is probably bogus. Actually,
218 # it's probably always bogus, but let's be paranoid here. 218 # it's probably always bogus, but let's be paranoid here.
219 if ($offset == 0) { undef $offset;} 219 # Has been reported that 0.0000 happens in a production environment
220 # so this check should be taken out - SF tracker 1150777
221 #if ($offset == 0) { undef $offset;}
220 222
221 $ntpdate_error = defined ($offset) ? $ERRORS{"OK"} : $ERRORS{"CRITICAL"}; 223 $ntpdate_error = defined ($offset) ? $ERRORS{"OK"} : $ERRORS{"CRITICAL"};
222 print "ntperr = $ntpdate_error \n" if $verbose; 224 print "ntperr = $ntpdate_error \n" if $verbose;