From 4d7c5844a876eb866e2a0ddafa5c62a64cce1485 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Thu, 8 Jan 2026 20:55:53 +0100 Subject: [PATCH] ldap: make sure admin user can log in too --- test/common.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/common.nix b/test/common.nix index c3216b2..bc356d1 100644 --- a/test/common.nix +++ b/test/common.nix @@ -509,10 +509,10 @@ in }; bob = { email = "bob@example.com"; - groups = [ - "user_group" - "admin_group" - ]; + # Purposely not adding bob to the user_group + # so we can make sure users only part admins + # can also login normally. + groups = [ "admin_group" ]; password.result.path = pkgs.writeText "bobPassword" "BobPassword"; }; charlie = {