From 7a0980e5dce32e918711231d38c19460a0a98f4e Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 12 Aug 2015 11:16:26 -0700 Subject: nixos/tests/openssh: Fix test by using safe public keys --- nixos/tests/openssh.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nixos/tests') diff --git a/nixos/tests/openssh.nix b/nixos/tests/openssh.nix index 34f9fccb79b8..390363b88e21 100644 --- a/nixos/tests/openssh.nix +++ b/nixos/tests/openssh.nix @@ -43,7 +43,7 @@ in { testScript = '' startAll; - my $key=`${pkgs.openssh}/bin/ssh-keygen -t dsa -f key -N ""`; + my $key=`${pkgs.openssh}/bin/ssh-keygen -t ed25519 -f key -N ""`; $server->waitForUnit("sshd"); @@ -52,8 +52,8 @@ in { $server->copyFileFromHost("key.pub", "/root/.ssh/authorized_keys"); $client->succeed("mkdir -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"); $client->waitForUnit("network.target"); $client->succeed("ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no server 'echo hello world' >&2"); -- cgit 1.4.1