From 96a7e65c370733e74132836479711948c6824697 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 2 Nov 2014 12:34:16 +0100 Subject: nixos/modules/services/monitoring/graphite.nix: don't create graphite user unconditionally I'm not sure what exactly this user is needed for, i.e. under what circumstances it must exist or not, but creating it unconditionally seems like the wrong thing to do. I complained to @offlinehacker about this on Github, but got no response for a week or so. I'm disabling the extraUsers bit to put out the fire, and now hope that someone who actually knows about Graphite implements a proper solution later. --- nixos/modules/services/monitoring/graphite.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'nixos') diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index e21ef167a4ec..ca3ecb00da4f 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -535,14 +535,16 @@ in { environment.systemPackages = [ pkgs.pythonPackages.graphite_pager ]; }) - { - users.extraUsers = singleton { - name = "graphite"; - uid = config.ids.uids.graphite; - description = "Graphite daemon user"; - home = dataDir; - }; - users.extraGroups.graphite.gid = config.ids.gids.graphite; - } + # Disabled: Don't create this user unconditionally! + # + # { + # users.extraUsers = singleton { + # name = "graphite"; + # uid = config.ids.uids.graphite; + # description = "Graphite daemon user"; + # home = dataDir; + # }; + # users.extraGroups.graphite.gid = config.ids.gids.graphite; + # } ]; } -- cgit 1.4.1