diff options
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 8bd874cb3..978cea73c 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -1760,7 +1760,7 @@ sub verify_version { ndie msg('die-nosetting', $setting); } my $val = $info2->{db}[0]{slurp}; - if ($val !~ /^on\b/) { + if ($val !~ /^\s*on\b/) { ndie msg('die-noset', $action, $setting); } } |