From e055085ac1a59c35a904ec0de85aba46e9c7d8c3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Oct 2009 12:32:33 +0000 Subject: [PATCH] svn path=/nixos/trunk/; revision=17823 --- modules/installer/cd-dvd/installation-cd-minimal.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/installer/cd-dvd/installation-cd-minimal.nix b/modules/installer/cd-dvd/installation-cd-minimal.nix index 29e6cc939ad..b87bc016d36 100644 --- a/modules/installer/cd-dvd/installation-cd-minimal.nix +++ b/modules/installer/cd-dvd/installation-cd-minimal.nix @@ -8,9 +8,11 @@ installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"; - # allow starting sshd by running "start sshd" + # 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; - jobs.sshd.startOn = "never-start-ssh-automatically-you-should-set-root-password-first"; + jobs.sshd.startOn = ""; # Don't include X libraries. services.sshd.forwardX11 = false;