From 6606fa124f89124519d19f0be23b56c5d21c1644 Mon Sep 17 00:00:00 2001 From: Stefan Priebe Date: Wed, 31 Oct 2012 12:16:57 +0100 Subject: [PATCH] PVE/AbstractMigrate: remove hardcoded blowfish cipher Signed-off-by: Stefan Priebe --- data/PVE/AbstractMigrate.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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'); -- 2.39.2