From: Stefan Priebe Date: Wed, 31 Oct 2012 11:16:57 +0000 (+0100) Subject: PVE/AbstractMigrate: remove hardcoded blowfish cipher X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=6606fa124f89124519d19f0be23b56c5d21c1644 PVE/AbstractMigrate: remove hardcoded blowfish cipher Signed-off-by: Stefan Priebe --- diff --git a/data/PVE/AbstractMigrate.pm b/data/PVE/AbstractMigrate.pm index ccfcfb6..01d0a50 100644 --- a/data/PVE/AbstractMigrate.pm +++ b/data/PVE/AbstractMigrate.pm @@ -104,8 +104,7 @@ 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 = ('-aHAX', '--delete', '--numeric-ids');