From ccc95a3aac48f639b572a5d1625163b7fe674a3d Mon Sep 17 00:00:00 2001 From: praetor Date: Sun, 24 Mar 2019 23:16:20 +0000 Subject: [PATCH] fixed ssh known_hosts --- utils/bootstrap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/bootstrap.pl b/utils/bootstrap.pl index f9fdc77..ec81bd7 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 >> /var/spool/uucp/.ssh/known_hosts"; + my $cmd = "/usr/bin/ssh-keyscan -H $address >> /var/spool/uucp/.ssh/known_hosts"; system($cmd); }