]> git.michaelhowe.org Git - packages/a/afs-monitor.git/commitdiff
Ignore unauthenticated warning in check_bos
authorRuss Allbery <rra@stanford.edu>
Tue, 19 Oct 2010 16:50:47 +0000 (09:50 -0700)
committerRuss Allbery <rra@stanford.edu>
Tue, 19 Oct 2010 16:50:47 +0000 (09:50 -0700)
Ignore "bos: running unauthenticated" in check_bos, since bos status
is always run unauthenticated.

NEWS
check_bos

diff --git a/NEWS b/NEWS
index 641eab0b0e0d1fb926bf941be1856574abda1621..f5df7c438f3740403f25984277bd4478ed4b7ba4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,3 +14,6 @@ afs-monitor 2.0 (unreleased)
     scripts, rather than reporting the problem only to standard error.
     Check that the host to check was specified and report a syntax error
     if it wasn't.  Thanks, Tobias Wolter.
+
+    Ignore "bos: running unauthenticated" in check_bos, since bos status
+    is always run unauthenticated.
index 67a06eb70c155f80b0a09b407c5a95b31e63a8db..f7d9c5c7f8fb77714aefc8fbcb5d967ebb79efc7 100755 (executable)
--- a/check_bos
+++ b/check_bos
@@ -44,6 +44,7 @@ our $TIMEOUT = 10;
 # error.
 our @OKAY = (
     qr/^\s*$/,
+    qr/^bos: running unauthenticated$/,
     qr/^Instance\ \S+,\ \(type\ is\ \S+\)(\ has\ core\ file,)?
          \ currently\ running\ normally\.$/x,
     qr/^\s*Auxiliary status is: file server running\.$/,