nixos/zabbixServer: explicitely set security.wrappers ownership

This commit is contained in:
Aaron Andersen
2021-11-17 11:26:14 -05:00
parent 51ac8edff3
commit ebbf93136f

View File

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