summary refs log tree commit diff
path: root/nixos/tests/openldap.nix
diff options
context:
space:
mode:
authorKai Wohlfahrt <kai.wohlfahrt@gmail.com>2020-09-13 23:20:23 +0100
committerKai Wohlfahrt <kai.wohlfahrt@gmail.com>2020-11-21 16:13:03 +0000
commit3f892c2174d3e215be2e12d6dacede3cd4db392c (patch)
treee51751b5f860f64ab90cc0d9ba270abe43a0b2c9 /nixos/tests/openldap.nix
parent2050376caee44dd52e7aaa00a9bfac6b644e5bff (diff)
downloadnixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar.gz
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar.bz2
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar.lz
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar.xz
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.tar.zst
nixpkgs-3f892c2174d3e215be2e12d6dacede3cd4db392c.zip
nixos/openldap: Remove extraConfig options
Instead of deprecating, as per PR feedback
Diffstat (limited to 'nixos/tests/openldap.nix')
-rw-r--r--nixos/tests/openldap.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/nixos/tests/openldap.nix b/nixos/tests/openldap.nix
index 0c40073735e..b6dd8f573d5 100644
--- a/nixos/tests/openldap.nix
+++ b/nixos/tests/openldap.nix
@@ -121,26 +121,4 @@ in {
       )
     '' + testScript;
   };
-
-  # extraConfig forces use of slapd.conf, test this until that option is removed
-  legacyConfig = import ./make-test-python.nix {
-    inherit testScript;
-    name = "openldap";
-
-    machine = { pkgs, ... }: {
-      services.openldap = {
-        enable = true;
-        suffix = "dc=example";
-        rootdn = "cn=root,dc=example";
-        rootpw = "notapassword";
-        extraConfig = ''
-          # No-op
-        '';
-        extraDatabaseConfig = ''
-          # No-op
-        '';
-        declarativeContents = dbContents;
-      };
-    };
-  };
 }