Code

patched bug id 1200030 - regex update
authorSubhendu Ghosh <sghosh@users.sourceforge.net>
Tue, 24 May 2005 22:33:09 +0000 (22:33 +0000)
committerSubhendu Ghosh <sghosh@users.sourceforge.net>
Tue, 24 May 2005 22:33:09 +0000 (22:33 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1175 f882894a-f735-0410-b71e-b25c423dba1c

plugins-scripts/check_ntp.pl

index 137a75a8b5bf10e4074ab76818f79f13e393e2f8..90cf7904d99ad2dcf2897ac41487c11aaec8b9d0 100755 (executable)
@@ -290,7 +290,7 @@ if ($have_ntpq) {
                        }
                        
                        # 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)([-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.]+)/) {
                                $syspeer = $2;
                                $stratum = $4;
                                $jitter = $11;
@@ -315,7 +315,7 @@ if ($have_ntpq) {
                unless (defined $syspeer) {
                        if ($#candidates >=0) {
                                foreach my $c (@candidates) {
-                                       $c =~ /^(#)([-0-9.\s]+)\s+([-0-9A-Za-z.]+)\s+([-0-9.]+)\s+([lumb-]+)\s+([-0-9m.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)/;
+                                       $c =~ /^(#)([-0-9.\s]+)\s+([-0-9A-Za-z_().]+)\s+([-0-9.]+)\s+([lumb-]+)\s+([-0-9m.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)\s+([-0-9.]+)/;
                                        $syspeer = $2;
                                        $stratum = $4;
                                        $jitter = $11;