From d843d87120115a6af5be704107bea46b73be5fb1 Mon Sep 17 00:00:00 2001 From: Alex Harpin Date: Thu, 9 Oct 2014 21:05:45 +0100 Subject: vyatta-op: fix for the config file copy via scp failure Copying the config file (or any other for that matter via the CLI copy command) to another host via scp fails due to the failure to create the known_hosts file. Bug #340 http://bugzilla.vyos.net/show_bug.cgi?id=340 --- scripts/vyatta-image-tools.pl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/vyatta-image-tools.pl b/scripts/vyatta-image-tools.pl index 8afeccf..6bcfd7d 100755 --- a/scripts/vyatta-image-tools.pl +++ b/scripts/vyatta-image-tools.pl @@ -230,7 +230,9 @@ sub curl_to { chomp $fingerprint; print "RSA key fingerprint is $fingerprint.\n"; if (prompt("Are you sure you want to continue connecting (yes/no) [Yes]? ", -tynd=>"y")) { - mkdir "~/.ssh/"; + if (! -d "$ENV{HOME}/.ssh/") { + mkdir "$ENV{HOME}/.ssh/"; + } open(my $known_hosts, ">>", "$ENV{HOME}/.ssh/known_hosts") or die "Cannot open known_hosts: $!"; print $known_hosts "$rsa_key\n"; @@ -257,7 +259,9 @@ sub curl_from { chomp $fingerprint; print "RSA key fingerprint is $fingerprint.\n"; if (prompt("Are you sure you want to continue connecting (yes/no) [Yes]? ", -tynd=>"y")) { - mkdir "~/.ssh/"; + if (! -d "$ENV{HOME}/.ssh/") { + mkdir "$ENV{HOME}/.ssh/"; + } open(my $known_hosts, ">>", "$ENV{HOME}/.ssh/known_hosts") or die "Cannot open known_hosts: $!"; print $known_hosts "$rsa_key\n"; -- cgit v1.2.3