diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-20 11:27:36 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-20 11:27:36 +0000 |
commit | 112337f7022a0e7c28eb5ac20fe967c8e2396fa3 (patch) | |
tree | 5f843d60264bc930693ee7aa49548c4a89226719 /lib | |
parent | 4028fd652dc3751f7137dd5cb41c5480d580feed (diff) |
Adjusted regexs to be anchored at the beginning of the line, and
expect just one word before "must".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/parser.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/parser.rb b/lib/custodian/parser.rb index 913fec7..045711d 100644 --- a/lib/custodian/parser.rb +++ b/lib/custodian/parser.rb @@ -257,7 +257,7 @@ class MonitorConfig elsif ( line =~ /^([0-9A-Z_]+)\s+(is|are)\s+/ ) define_macro( line ) - elsif ( line =~ /(.*)\s+must\s+ping(.*)/ ) + elsif ( line =~ /^(\S+)\s+must\s+ping(.*)/ ) # # Ping is a special case because the configuration file entry @@ -280,7 +280,7 @@ class MonitorConfig new_line = "#{pre} must run ping #{post}" return( parse_line( new_line ) ) - elsif ( line =~ /\s+must\s+run\s+([^\s]+)(\s+|\.|$)/i ) + elsif ( line =~ /^\S+\s+must\s+run\s+([^\s]+)(\s+|\.|$)/i ) # # Get the service we're testing, and remove any trailing "." |