diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | lib/Smokeping/probes/passwordchecker.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +* make the CGI not croak if a password file is not readable. -- niko * don't die if syslogd is dead -- niko, reported by Christoph Biedl <cbiedl *gmx.de> as Debian bug #395056 * add sourceaddress configurability to FPing probe (requires -S flag) -- Norman Rasmussen norman rasmussen.co.za diff --git a/lib/Smokeping/probes/passwordchecker.pm b/lib/Smokeping/probes/passwordchecker.pm index d1cc128..74b0bf7 100644 --- a/lib/Smokeping/probes/passwordchecker.pm +++ b/lib/Smokeping/probes/passwordchecker.pm @@ -97,7 +97,7 @@ sub probevars { _example => '/some/place/secret', _sub => sub { my $val = shift; - -r $val or return "ERROR: password file $val is not readable."; + -r $val or $ENV{SERVER_SOFTWARE} or return "ERROR: password file $val is not readable."; return undef; }, }, |