PVE/API2/Storage/Status: remove hardcoded blowfish cipher PVE/Storage: 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:56 +01:00
committed by Dietmar Maurer
parent 051b247cea
commit 45c2ee3526
2 changed files with 2 additions and 3 deletions

View File

@ -337,8 +337,7 @@ sub storage_migrate {
my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_host'";
# blowfish is a fast block cipher, much faster then 3des
my $sshoptions = "-c blowfish -o 'BatchMode=yes'";
my $sshoptions = "-o 'BatchMode=yes'";
my $ssh = "/usr/bin/ssh $sshoptions";
local $ENV{RSYNC_RSH} = $ssh;