about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-01-19 19:50:41 +0100
committerGitHub <noreply@github.com>2020-01-19 19:50:41 +0100
commit5ed3474ca5d80840bdeeb5e6072a846eecf8cabb (patch)
tree6440ba6128611787de6f8c36c07c52c6870d2d2a /nixos/tests
parentd3ad670ca297e08ba0d4cf78e1cee5e23ca32440 (diff)
parentdc6451f08c9add6ffaacfef9382d66268ca0be70 (diff)
downloadnixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar.gz
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar.bz2
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar.lz
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar.xz
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.tar.zst
nixlib-5ed3474ca5d80840bdeeb5e6072a846eecf8cabb.zip
Merge pull request #77540 from singron/fix-certmgr-test
nixos/tests/certmgr: Fix file permissions
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/certmgr.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/tests/certmgr.nix b/nixos/tests/certmgr.nix
index cb69f35e862f..ef32f54400e3 100644
--- a/nixos/tests/certmgr.nix
+++ b/nixos/tests/certmgr.nix
@@ -9,8 +9,8 @@ let
     inherit action;
     authority = {
       file = {
-        group = "nobody";
-        owner = "nobody";
+        group = "nginx";
+        owner = "nginx";
         path = "/tmp/${host}-ca.pem";
       };
       label = "www_ca";
@@ -18,14 +18,14 @@ let
       remote = "localhost:8888";
     };
     certificate = {
-      group = "nobody";
-      owner = "nobody";
+      group = "nginx";
+      owner = "nginx";
       path = "/tmp/${host}-cert.pem";
     };
     private_key = {
-      group = "nobody";
+      group = "nginx";
       mode = "0600";
-      owner = "nobody";
+      owner = "nginx";
       path = "/tmp/${host}-key.pem";
     };
     request = {