about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authordadada <dadada@dadada.li>2020-04-18 11:30:19 +0200
committerdadada <dadada@dadada.li>2020-04-18 23:37:19 +0200
commit2d86cca35edbac2cba329a59c27630a2131cda91 (patch)
tree4858a19edd1fe81788bfd420a3eda01c6cb54795 /nixos/tests
parent9460fb578880de9a10815001c7587bf211e95562 (diff)
downloadnixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar.gz
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar.bz2
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar.lz
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar.xz
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.tar.zst
nixlib-2d86cca35edbac2cba329a59c27630a2131cda91.zip
nixos/dokuwiki: change default of aclFile and usersFile
`aclFile` and `usersFile` will be set to a default value if `aclUse` is
specified and aclFile is not overriden by `acl`.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/dokuwiki.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/dokuwiki.nix b/nixos/tests/dokuwiki.nix
index 62d8ec9f0b1c..2b907133ed5a 100644
--- a/nixos/tests/dokuwiki.nix
+++ b/nixos/tests/dokuwiki.nix
@@ -36,7 +36,7 @@ in {
 
   machine = { ... }: {
     services.dokuwiki."site1.local" = {
-      acl = " ";
+      aclUse = false;
       superUser = "admin";
       nginx = {
         forceSSL = false;
@@ -44,7 +44,7 @@ in {
       };
     };
     services.dokuwiki."site2.local" = {
-      acl = " ";
+      aclUse = true;
       superUser = "admin";
       nginx = {
         forceSSL = false;