forked from mirrors/nixpkgs
nixos/graylog: fix group creation
As described in #163571, the graylog group was not created by the module.
This commit is contained in:
parent
31961f6415
commit
045b819959
|
@ -132,7 +132,7 @@ in
|
|||
description = "Graylog server daemon user";
|
||||
};
|
||||
};
|
||||
users.groups = mkIf (cfg.user == "graylog") {};
|
||||
users.groups = mkIf (cfg.user == "graylog") { graylog = {}; };
|
||||
|
||||
systemd.tmpfiles.rules = [
|
||||
"d '${cfg.messageJournalDir}' - ${cfg.user} - - -"
|
||||
|
|
Loading…
Reference in a new issue