[Nagiosplug-checkins] nagiosplug/plugins-scripts check_ntp.pl,1.29,1.30
M. Sean Finney
seanius at users.sourceforge.net
Thu Oct 13 03:22:06 CEST 2005
Update of /cvsroot/nagiosplug/nagiosplug/plugins-scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9092/plugins-scripts
Modified Files:
check_ntp.pl
Log Message:
debian bts #268044:
- use a "less beastly" regex for parsing ntpq output. probably need
some more widespread testing on this one.
Index: check_ntp.pl
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins-scripts/check_ntp.pl,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- check_ntp.pl 25 May 2005 14:05:41 -0000 1.29
+++ check_ntp.pl 13 Oct 2005 10:20:50 -0000 1.30
@@ -293,7 +293,7 @@
}
# match sys.peer or pps.peer
- if (/^(\*|o)([-0-9.\s]+)\s+([-0-9A-Za-z_().]+)\s+([-0-9.]+)\s+([lumb-]+)\s+([-0-9hm.]+)\s+([-0-9.mh]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)/) {
+ if (/^(\*|o)(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)/) {
$syspeer = $2;
$stratum = $4;
$jitter = $11;
More information about the Commits
mailing list