about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-06-01 23:18:21 -0400
committerGitHub <noreply@github.com>2018-06-01 23:18:21 -0400
commite4746bdf15c60566e7dfd86ccb9903da97d41fe4 (patch)
treef24b3928741945cc3f575f35788f6e0eec8de677 /nixos/modules
parent20ca7af00fc561a94e9b2bf09b11156cbb5125b1 (diff)
parentfdebbce7262d671ce3cd4020a7b4d8de1535a83c (diff)
downloadnixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar.gz
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar.bz2
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar.lz
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar.xz
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.tar.zst
nixlib-e4746bdf15c60566e7dfd86ccb9903da97d41fe4.zip
Merge pull request #40037 from alunduil/fix-fcrontab-setuid
nixos/modules/services/scheduling/fcron: add setuid to fcrontab
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/scheduling/fcron.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/scheduling/fcron.nix b/nixos/modules/services/scheduling/fcron.nix
index e3b6b638f5a7..0ea41f3c3985 100644
--- a/nixos/modules/services/scheduling/fcron.nix
+++ b/nixos/modules/services/scheduling/fcron.nix
@@ -128,6 +128,7 @@ in
         owner = "fcron";
         group = "fcron";
         setgid = true;
+        setuid = true;
       };
       fcrondyn = {
         source = "${pkgs.fcron}/bin/fcrondyn";