diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-03-08 06:19:32 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-03-08 06:19:32 +0000 |
commit | f24f2853c598bdde9041f84de77ec47fa1116870 (patch) | |
tree | a81a69d62b24f03834da0a3d97d11faf45d9382a | |
parent | b5b77ce39eb67ac83ee0c7c18f7020607c8abee1 (diff) | |
download | monitoring-plugins-f24f2853c598bdde9041f84de77ec47fa1116870.tar.gz |
Added OS info for offset issue
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1149 f882894a-f735-0410-b71e-b25c423dba1c
-rwxr-xr-x | plugins-scripts/check_ntp.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_ntp.pl b/plugins-scripts/check_ntp.pl index 8b5fe4d0..82c97ced 100755 --- a/plugins-scripts/check_ntp.pl +++ b/plugins-scripts/check_ntp.pl @@ -217,7 +217,7 @@ while (<NTPDATE>) { # An offset of 0.000000 with an error is probably bogus. Actually, # it's probably always bogus, but let's be paranoid here. # Has been reported that 0.0000 happens in a production environment - # so this check should be taken out - SF tracker 1150777 + # on Solaris 8 so this check should be taken out - SF tracker 1150777 #if ($offset == 0) { undef $offset;} $ntpdate_error = defined ($offset) ? $ERRORS{"OK"} : $ERRORS{"CRITICAL"}; |