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
@@ -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 = {