about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-16 08:43:36 -0400
committerGitHub <noreply@github.com>2020-04-16 08:43:36 -0400
commitb61999e4ad60c351b4da63ae3ff43aae3c0bbdfb (patch)
tree857fe507d638f0d2a80ffb71f3a3c361a057fc54 /nixos
parent7c2fc1ce23a805f3220d867f528ceb9bd848d2e1 (diff)
parent5c1c642939c2e1009c07fa7db16a031c99738d87 (diff)
downloadnixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar.gz
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar.bz2
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar.lz
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar.xz
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.tar.zst
nixlib-b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb.zip
Merge pull request #85332 from arianvp/revert-acme
Revert "nixos/acme: Fix allowKeysForGroup not applying immediately"
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/security/acme.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix
index 4af373ef7dfe..d5fb9b58f2ef 100644
--- a/nixos/modules/security/acme.nix
+++ b/nixos/modules/security/acme.nix
@@ -321,12 +321,6 @@ in
                   wantedBy = mkIf (!config.boot.isContainer) [ "multi-user.target" ];
                   serviceConfig = {
                     Type = "oneshot";
-                    # With RemainAfterExit the service is considered active even
-                    # after the main process having exited, which means when it
-                    # gets changed, the activation phase restarts it, meaning
-                    # the permissions of the StateDirectory get adjusted
-                    # according to the specified group
-                    RemainAfterExit = true;
                     User = data.user;
                     Group = data.group;
                     PrivateTmp = true;