Merge pull request #146409 from aanderse/zabbix

nixos/zabbixServer: explicitely set security.wrappers ownership

authored by Michele Guerini Rocco and committed by GitHub 90bb5d0e d01431f9

+6 -1
+6 -1
nixos/modules/services/monitoring/zabbix-server.nix
··· 250 250 }; 251 251 252 252 security.wrappers = { 253 - fping.source = "${pkgs.fping}/bin/fping"; 253 + fping = 254 + { setuid = true; 255 + owner = "root"; 256 + group = "root"; 257 + source = "${pkgs.fping}/bin/fping"; 258 + }; 254 259 }; 255 260 256 261 systemd.services.zabbix-server = {