From 609c1580d83524d9c4db47c942f1980c56ee454d Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 25 May 2019 10:13:12 -0400 Subject: [PATCH] nixos/nagios: change group from nogroup to nagios see #55370 --- nixos/modules/services/monitoring/nagios.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/monitoring/nagios.nix b/nixos/modules/services/monitoring/nagios.nix index 7f65236ed3d..a0c7b0c31f8 100644 --- a/nixos/modules/services/monitoring/nagios.nix +++ b/nixos/modules/services/monitoring/nagios.nix @@ -36,7 +36,7 @@ let # Uid/gid that the daemon runs under. nagios_user=nagios - nagios_group=nogroup + nagios_group=nagios # Misc. options. illegal_macro_output_chars=`~$&|'"<> @@ -150,8 +150,11 @@ in uid = config.ids.uids.nagios; home = nagiosState; createHome = true; + group = "nagios"; }; + users.groups.nagios = { }; + # This isn't needed, it's just so that the user can type "nagiostats # -c /etc/nagios.cfg". environment.etc = [ @@ -169,6 +172,7 @@ in serviceConfig = { User = "nagios"; + Group = "nagios"; Restart = "always"; RestartSec = 2; PermissionsStartOnly = true; @@ -176,7 +180,7 @@ in preStart = '' mkdir -m 0755 -p ${nagiosState} ${nagiosLogDir} - chown nagios ${nagiosState} ${nagiosLogDir} + chown -R nagios:nagios ${nagiosState} ${nagiosLogDir} ''; script = ''