From 42954a2d20dc3a97772dace8737ff863e7f0e8fd Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 15 Apr 2014 02:28:01 -0500 Subject: [PATCH] Fix hydra UID The style for IDs dictates that groups/users should have the same ID - so if a user doesn't have a group or vice versa, then we should skip that ID. In this case, we had already assigned grsecurity GID 121, but I accidentally also assigned Hydra UID 121. Instead, let's assign Hydra UID 122. And also assign a GID (122) as well. Luckily nobody was depending on this yet (except me). Signed-off-by: Austin Seipp --- nixos/modules/misc/ids.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 664aed7fbc9..0954e6185af 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -129,7 +129,7 @@ foundationdb = 118; newrelic = 119; starbound = 120; - hydra = 121; + hydra = 122; # When adding a uid, make sure it doesn't match an existing gid. @@ -233,6 +233,7 @@ newrelic = 119; starbound = 120; grsecurity = 121; + hydra = 122; # When adding a gid, make sure it doesn't match an existing uid.