summary refs log tree commit diff
path: root/nixos/tests/openldap.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-03-21 00:15:30 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-03-28 14:11:58 +0200
commitaa0f27abb06ca66a1dc99493ada65e2bbd6000c9 (patch)
tree9ba9187aaa5cdd641506fcde184c4cb850885f5a /nixos/tests/openldap.nix
parentecbf5ae27a9ee6e877a20e3abce85c21e4bda9c2 (diff)
downloadnixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar.gz
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar.bz2
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar.lz
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar.xz
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.tar.zst
nixpkgs-aa0f27abb06ca66a1dc99493ada65e2bbd6000c9.zip
treewide: machine -> nodes.machine
Diffstat (limited to 'nixos/tests/openldap.nix')
-rw-r--r--nixos/tests/openldap.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/openldap.nix b/nixos/tests/openldap.nix
index f1a39ad7dde..3c388119d5d 100644
--- a/nixos/tests/openldap.nix
+++ b/nixos/tests/openldap.nix
@@ -25,7 +25,7 @@ in {
     inherit testScript;
     name = "openldap";
 
-    machine = { pkgs, ... }: {
+    nodes.machine = { pkgs, ... }: {
       environment.etc."openldap/root_password".text = "notapassword";
       services.openldap = {
         enable = true;
@@ -65,7 +65,7 @@ in {
     inherit testScript;
     name = "openldap";
 
-    machine = { pkgs, ... }: {
+    nodes.machine = { pkgs, ... }: {
       services.openldap = {
         enable = true;
         logLevel = "stats acl";
@@ -83,7 +83,7 @@ in {
   manualConfigDir = import ./make-test-python.nix ({ pkgs, ... }: {
     name = "openldap";
 
-    machine = { pkgs, ... }: {
+    nodes.machine = { pkgs, ... }: {
       services.openldap = {
         enable = true;
         configDir = "/var/db/slapd.d";