diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-02-08T12·46+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-02-08T12·46+0100 |
commit | 444bae44ef3c27959d837d2e1f28131290cb52a7 (patch) | |
tree | 900d2bafc09ff4c39199b37bfe830facaf307ce3 /tests/remote-builds.nix | |
parent | f201b7733e22cc236a41093a88cc789239d994bd (diff) |
dsa -> ed25519
DSS is disabled by default in NixOS 18.03. https://hydra.nixos.org/build/68788560
Diffstat (limited to 'tests/remote-builds.nix')
-rw-r--r-- | tests/remote-builds.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/remote-builds.nix b/tests/remote-builds.nix index 75704ace2dba..d7a4b21989e5 100644 --- a/tests/remote-builds.nix +++ b/tests/remote-builds.nix @@ -46,13 +46,13 @@ in nix.buildMachines = [ { hostName = "slave1"; sshUser = "root"; - sshKey = "/root/.ssh/id_dsa"; + sshKey = "/root/.ssh/id_ed25519"; system = "i686-linux"; maxJobs = 1; } { hostName = "slave2"; sshUser = "root"; - sshKey = "/root/.ssh/id_dsa"; + sshKey = "/root/.ssh/id_ed25519"; system = "i686-linux"; maxJobs = 1; } @@ -70,10 +70,10 @@ in startAll; # Create an SSH key on the client. - my $key = `${pkgs.openssh}/bin/ssh-keygen -t dsa -f key -N ""`; + my $key = `${pkgs.openssh}/bin/ssh-keygen -t ed25519 -f key -N ""`; $client->succeed("mkdir -p -m 700 /root/.ssh"); - $client->copyFileFromHost("key", "/root/.ssh/id_dsa"); - $client->succeed("chmod 600 /root/.ssh/id_dsa"); + $client->copyFileFromHost("key", "/root/.ssh/id_ed25519"); + $client->succeed("chmod 600 /root/.ssh/id_ed25519"); # Install the SSH key on the slaves. $client->waitForUnit("network.target"); |