summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2014-04-19 14:17:44 -0700
committerRuss Allbery <eagle@eyrie.org>2014-04-19 14:17:44 -0700
commitc30c9341ef93059939581ba78efb4c626dc69490 (patch)
tree4a67614ace960e3e420641d4debd871d4d95fdc9
parent71c6475f0210710e48b57ad2931c3e3cd94291b2 (diff)
Fix ignore regex in krb5-sync-backend for missing users
The log message in the krb5-sync plugin changed from "in LDAP" to "via LDAP". Change the ignore regex accordingly.
-rwxr-xr-xtools/krb5-sync-backend2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/krb5-sync-backend b/tools/krb5-sync-backend
index 9728e6d..6ee82d0 100755
--- a/tools/krb5-sync-backend
+++ b/tools/krb5-sync-backend
@@ -42,7 +42,7 @@ my @IGNORE = (
qr{ $IGNORE_PREFIX .* Authentication error \z }xms,
qr{ $IGNORE_PREFIX .* for [ ] service_locator \z }xms,
qr{ $IGNORE_PREFIX .* Operation [ ] not [ ] permitted \z }xms,
- qr{ $IGNORE_PREFIX .* user [ ] .* [ ] not [ ] found [ ] in [ ] \S+\z}xms,
+ qr{ $IGNORE_PREFIX .* user [ ] .* [ ] not [ ] found [ ] via [ ] \S+\z}xms,
);
##############################################################################