Merge pull request #40037 from alunduil/fix-fcrontab-setuid

nixos/modules/services/scheduling/fcron: add setuid to fcrontab
This commit is contained in:
Matthew Justin Bauer 2018-06-01 23:18:21 -04:00 committed by GitHub
commit e4746bdf15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,6 +128,7 @@ in
owner = "fcron"; owner = "fcron";
group = "fcron"; group = "fcron";
setgid = true; setgid = true;
setuid = true;
}; };
fcrondyn = { fcrondyn = {
source = "${pkgs.fcron}/bin/fcrondyn"; source = "${pkgs.fcron}/bin/fcrondyn";