From 2d080bb88df9cf928e02614a31676c1886c12edf Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 28 Jan 2016 09:33:48 +0100 Subject: [PATCH] storage_migrate: another ipv6 fix for an rsync command --- PVE/Storage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 5fcb502..140f8ae 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -476,7 +476,7 @@ sub storage_migrate { } my $cmd = ['/usr/bin/rsync', '--progress', '--sparse', '--whole-file', - $src, "root\@${target_host}:$dst"]; + $src, "[root\@${target_host}]:$dst"]; my $percent = -1;