* 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
This commit is contained in:
Eelco Dolstra 2010-03-11 18:07:20 +00:00
parent a6b89666fd
commit 176f6c52dd

View file

@ -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";