X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=data%2FPVE%2FAbstractMigrate.pm;h=01d0a50cfa70ce5b3ed36b600ff78ebbe81b7353;hp=3425fa1f97877e3b325865c6d5afc9b9dd8c8b48;hb=3ce640abb3af0319be0ee92660ac4f9b4655741c;hpb=92ea5df863b487cc09f1095f6984402f7f8c6be2 diff --git a/data/PVE/AbstractMigrate.pm b/data/PVE/AbstractMigrate.pm index 3425fa1..01d0a50 100644 --- a/data/PVE/AbstractMigrate.pm +++ b/data/PVE/AbstractMigrate.pm @@ -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 {