From bda224e3f7b44ac7fd9631d286e1b9a77a6db5ad Mon Sep 17 00:00:00 2001 From: uucp Date: Wed, 20 Mar 2019 05:40:42 +0000 Subject: [PATCH] known_hosts not concatenating. Fixed --- utils/bootstrap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/bootstrap.pl b/utils/bootstrap.pl index 64d2279..f9fdc77 100755 --- a/utils/bootstrap.pl +++ b/utils/bootstrap.pl @@ -92,7 +92,7 @@ sub generateConfig { sub getKeys { my $address = shift; - my $cmd = "/usr/bin/ssh-keyscan ".$address; + my $cmd = "/usr/bin/ssh-keyscan $address >> /var/spool/uucp/.ssh/known_hosts"; system($cmd); }