summaryrefslogtreecommitdiffstats
path: root/nixos/tests/ldap.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/ldap.nix')
-rw-r--r--nixos/tests/ldap.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/nixos/tests/ldap.nix b/nixos/tests/ldap.nix
index b3fd42e75886..fe859876ed25 100644
--- a/nixos/tests/ldap.nix
+++ b/nixos/tests/ldap.nix
@@ -28,20 +28,19 @@ let
users.ldap.daemon = {
enable = useDaemon;
rootpwmoddn = "cn=admin,${dbSuffix}";
- rootpwmodpw = "/etc/nslcd.rootpwmodpw";
+ rootpwmodpwFile = "/etc/nslcd.rootpwmodpw";
};
- # NOTE: password stored in clear in Nix's store, but this is a test.
- environment.etc."nslcd.rootpwmodpw".source = pkgs.writeText "rootpwmodpw" dbAdminPwd;
users.ldap.loginPam = true;
users.ldap.nsswitch = true;
users.ldap.server = "ldap://server";
users.ldap.base = "ou=posix,${dbSuffix}";
users.ldap.bind = {
distinguishedName = "cn=admin,${dbSuffix}";
- password = "/etc/ldap/bind.password";
+ passwordFile = "/etc/ldap/bind.password";
};
- # NOTE: password stored in clear in Nix's store, but this is a test.
+ # NOTE: passwords stored in clear in Nix's store, but this is a test.
environment.etc."ldap/bind.password".source = pkgs.writeText "password" dbAdminPwd;
+ environment.etc."nslcd.rootpwmodpw".source = pkgs.writeText "rootpwmodpw" dbAdminPwd;
};
in