Merge pull request #146409 from aanderse/zabbix

nixos/zabbixServer: explicitely set security.wrappers ownership
This commit is contained in:
Michele Guerini Rocco 2021-11-17 22:05:16 +01:00 committed by GitHub
commit 90bb5d0e19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,7 +250,12 @@ in
};
security.wrappers = {
fping.source = "${pkgs.fping}/bin/fping";
fping =
{ setuid = true;
owner = "root";
group = "root";
source = "${pkgs.fping}/bin/fping";
};
};
systemd.services.zabbix-server = {