summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-03-11 17:02:53 +0000
committerLudovic Courtès <ludo@gnu.org>2010-03-11 17:02:53 +0000
commit8e16742b7949b24781eb99158a117dff4922778f (patch)
tree4b85730f56f75f7de42a211a75d962ce7f3c85a0 /modules
parentd1b4b7fd282e880541bd2d24a468e1514c5eae1d (diff)
downloadnixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar.gz
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar.bz2
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar.lz
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar.xz
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.tar.zst
nixpkgs-8e16742b7949b24781eb99158a117dff4922778f.zip
Update users of `services.sshd'.
svn path=/nixos/trunk/; revision=20575
Diffstat (limited to 'modules')
-rw-r--r--modules/installer/cd-dvd/installation-cd-base.nix4
-rw-r--r--modules/installer/cd-dvd/installation-cd-minimal.nix2
-rw-r--r--modules/installer/cd-dvd/installation-cd-rescue.nix2
-rw-r--r--modules/installer/cd-dvd/system-tarball-pc.nix4
-rw-r--r--modules/programs/ssh.nix2
-rw-r--r--modules/services/networking/ssh/sshd.nix2
-rw-r--r--modules/virtualisation/amazon-image.nix4
7 files changed, 10 insertions, 10 deletions
diff --git a/modules/installer/cd-dvd/installation-cd-base.nix b/modules/installer/cd-dvd/installation-cd-base.nix
index 856dc7ec04d..6eb4675a69c 100644
--- a/modules/installer/cd-dvd/installation-cd-base.nix
+++ b/modules/installer/cd-dvd/installation-cd-base.nix
@@ -112,7 +112,7 @@ let
 
         # Add your own options below and run "nixos-rebuild switch".
         # E.g.,
-        #   services.sshd.enable = true;
+        #   services.openssh.enable = true;
       }
     '';
   
@@ -246,6 +246,6 @@ in
   # Allow sshd to be started manually through "start sshd".  It should
   # not be started by default on the installation CD because the
   # default root password is empty.
-  services.sshd.enable = true;
+  services.openssh.enable = true;
   jobs.sshd.startOn = pkgs.lib.mkOverride 50 {} "";
 }
diff --git a/modules/installer/cd-dvd/installation-cd-minimal.nix b/modules/installer/cd-dvd/installation-cd-minimal.nix
index ae520e64101..4d85b7c8a80 100644
--- a/modules/installer/cd-dvd/installation-cd-minimal.nix
+++ b/modules/installer/cd-dvd/installation-cd-minimal.nix
@@ -9,7 +9,7 @@
   installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix";
 
   # Don't include X libraries.
-  services.sshd.forwardX11 = false;
+  services.openssh.forwardX11 = false;
   services.dbus.enable = false; # depends on libX11
   services.hal.enable = false; # depends on dbus
   fonts.enableFontConfig = false;
diff --git a/modules/installer/cd-dvd/installation-cd-rescue.nix b/modules/installer/cd-dvd/installation-cd-rescue.nix
index dd3a72c49c6..9db626e5a9d 100644
--- a/modules/installer/cd-dvd/installation-cd-rescue.nix
+++ b/modules/installer/cd-dvd/installation-cd-rescue.nix
@@ -9,7 +9,7 @@
   installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix";
 
   # Don't include X libraries.
-  services.sshd.forwardX11 = false;
+  services.openssh.forwardX11 = false;
   services.dbus.enable = false; # depends on libX11
   services.hal.enable = false; # depends on dbus
   fonts.enableFontConfig = false;
diff --git a/modules/installer/cd-dvd/system-tarball-pc.nix b/modules/installer/cd-dvd/system-tarball-pc.nix
index 7774876447b..3245a8c34b3 100644
--- a/modules/installer/cd-dvd/system-tarball-pc.nix
+++ b/modules/installer/cd-dvd/system-tarball-pc.nix
@@ -22,7 +22,7 @@ let
 
         # Add your own options below and run "nixos-rebuild switch".
         # E.g.,
-        #   services.sshd.enable = true;
+        #   services.openssh.enable = true;
       }
     '';
   
@@ -173,6 +173,6 @@ in
   # Allow sshd to be started manually through "start sshd".  It should
   # not be started by default on the installation CD because the
   # default root password is empty.
-  services.sshd.enable = true;
+  services.openssh.enable = true;
   jobs.sshd.startOn = pkgs.lib.mkOverride 50 {} "";
 }
diff --git a/modules/programs/ssh.nix b/modules/programs/ssh.nix
index c325a4bea34..ce07c4f3b32 100644
--- a/modules/programs/ssh.nix
+++ b/modules/programs/ssh.nix
@@ -7,7 +7,7 @@
     [ { # SSH configuration.  Slight duplication of the sshd_config
         # generation in the sshd service.
         source = pkgs.writeText "ssh_config" ''
-          ${if config.services.sshd.forwardX11 then ''
+          ${if config.services.openssh.forwardX11 then ''
             ForwardX11 yes
             XAuthLocation ${pkgs.xorg.xauth}/bin/xauth
           '' else ''
diff --git a/modules/services/networking/ssh/sshd.nix b/modules/services/networking/ssh/sshd.nix
index 38812754a69..e0fef518592 100644
--- a/modules/services/networking/ssh/sshd.nix
+++ b/modules/services/networking/ssh/sshd.nix
@@ -123,7 +123,7 @@ in
         target = "ssh/moduli";
       };
 
-    jobs.openssh = {
+    jobs.sshd = {
 
         description = "OpenSSH server";
 
diff --git a/modules/virtualisation/amazon-image.nix b/modules/virtualisation/amazon-image.nix
index f314f522887..acb0c22ab61 100644
--- a/modules/virtualisation/amazon-image.nix
+++ b/modules/virtualisation/amazon-image.nix
@@ -83,8 +83,8 @@ with pkgs.lib;
 
   # Allow root logins only using the SSH key that the user specified
   # at instance creation time.
-  services.sshd.enable = true;
-  services.sshd.permitRootLogin = "without-password";
+  services.openssh.enable = true;
+  services.openssh.permitRootLogin = "without-password";
 
   # Obtain the SSH key and host name at startup time.
   jobs.fetchEC2Data =