PVE/AbstractMigrate: remove hardcoded blowfish cipher

Signed-off-by: Stefan Priebe <s.priebe@profihost.ag>
This commit is contained in:
Stefan Priebe 2012-10-31 12:16:57 +01:00 committed by Dietmar Maurer
parent b5d12b0845
commit 6606fa124f

View File

@ -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');