diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 08:20:49 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 08:20:49 +0000 |
commit | f3b0bca5c95f217c0b9dd2ffc621d2316d34abb4 (patch) | |
tree | 3b4bd9e2a616d12beaaa5abbdb3f416b411aefde /bin | |
parent | 5da2d4cfcf0b4be2bf846149f3b3819931eaf4b7 (diff) |
Allow "must run xxx." - with no trailing whitespace
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/custodian-enqueue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index 8c1cb71..c53adc4 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -284,7 +284,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+must\s+run\s+([^\s]+)(\s+|\.)/i ) # # Get the service we're testing, and remove any trailing "." |