migrate: don't include the hostname in rsync's rsh command

This commit is contained in:
Wolfgang Bumiller
2017-06-06 10:04:02 +02:00
committed by Dietmar Maurer
parent 4b4c580d02
commit 47cea19432

View File

@ -543,7 +543,8 @@ sub storage_migrate {
my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_sshinfo->{name}'";
my $ssh = PVE::Cluster::ssh_info_to_command($target_sshinfo);
local $ENV{RSYNC_RSH} = PVE::Tools::cmd2string($ssh);
my $ssh_base = PVE::Cluster::ssh_info_to_command_base($target_sshinfo);
local $ENV{RSYNC_RSH} = PVE::Tools::cmd2string($ssh_base);
my $no_incremental = sub {
my ($type) = @_;