]> git.proxmox.com Git - pve-common.git/blobdiff - data/PVE/AbstractMigrate.pm
bump version to 1.0-39
[pve-common.git] / data / PVE / AbstractMigrate.pm
index 3425fa1f97877e3b325865c6d5afc9b9dd8c8b48..01d0a50cfa70ce5b3ed36b600ff78ebbe81b7353 100644 (file)
@@ -104,11 +104,10 @@ my $eval_int = sub {
     };
 };
 
-# blowfish is a fast block cipher, much faster then 3des
-my @ssh_opts = ('-c', 'blowfish', '-o', 'BatchMode=yes');
+my @ssh_opts = ('-o', 'BatchMode=yes');
 my @ssh_cmd = ('/usr/bin/ssh', @ssh_opts);
 my @scp_cmd = ('/usr/bin/scp', @ssh_opts);
-my @rsync_opts = ('-aH', '--delete', '--numeric-ids');
+my @rsync_opts = ('-aHAX', '--delete', '--numeric-ids');
 my @rsync_cmd = ('/usr/bin/rsync', @rsync_opts);
 
 sub migrate {