From 176f6c52dd28575410ff8cb342415505b78c51c0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 11 Mar 2010 18:07:20 +0000 Subject: [PATCH] * Change the name of the SSH privilege separation user account back to "sshd" because changing it to "opensshd" causes breakage (like the activation script saying "useradd: UID 2 is not unique."). Also, OpenSSH requires it to be named "sshd", I think. svn path=/nixos/trunk/; revision=20577 --- modules/services/networking/ssh/sshd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/networking/ssh/sshd.nix b/modules/services/networking/ssh/sshd.nix index e0fef5185929..dc1d8537142f 100644 --- a/modules/services/networking/ssh/sshd.nix +++ b/modules/services/networking/ssh/sshd.nix @@ -112,7 +112,7 @@ in config = mkIf config.services.openssh.enable { users.extraUsers = singleton - { name = "opensshd"; + { name = "sshd"; uid = config.ids.uids.sshd; description = "SSH privilege separation user"; home = "/var/empty";