diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-17T02·53+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-17T03·03+0000 |
commit | 8f6309fe2206153927338e837be94f25a8039217 (patch) | |
tree | 5cee12e27ea09f6d052252c8a553f30b174a1034 | |
parent | 27db1fc86b30fd159935633b367c713d20f8c3c8 (diff) |
fix(monorepo-gerrit): Use displayName attribute as accountFullName r/1008
This attribute makes much more sense in this position semantically. Change-Id: I16cc6304f42c577a2368bd7c9573fcb7dd276a9d Reviewed-on: https://cl.tvl.fyi/c/depot/+/448 Reviewed-by: riking <rikingcoding@gmail.com>
-rw-r--r-- | ops/nixos/monorepo-gerrit.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/nixos/monorepo-gerrit.nix b/ops/nixos/monorepo-gerrit.nix index fe3be6d720a7..003088fde634 100644 --- a/ops/nixos/monorepo-gerrit.nix +++ b/ops/nixos/monorepo-gerrit.nix @@ -63,7 +63,7 @@ in { server = "ldap://localhost"; accountBase = "ou=users,dc=tvl,dc=fyi"; accountPattern = "(&(objectClass=organizationalPerson)(cn=\${username}))"; - accountFullName = "cn"; + accountFullName = "displayName"; accountEmailAddress = "mail"; accountSshUserName = "cn"; groupBase = "ou=groups,dc=tvl,dc=fyi"; |