blowfish is slow and isn't supported on Jessie: let ssh decide

cf. https://support.tranquil.it/issue648
This commit is contained in:
Jérémie Courrèges-Anglas
2015-05-13 16:06:45 +02:00
parent 53b0d44ead
commit 41d09962eb
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ class backup_rsync_btrfs(backup_generic):
backup_source = '%s@%s::%s%s' % (self.remote_user, self.server_name, self.rsync_module, self.remote_dir)
else:
# case of rsync + ssh
ssh_params = ['-o StrictHostKeyChecking=no','-c blowfish']
ssh_params = ['-o StrictHostKeyChecking=no']
if self.private_key:
ssh_params.append('-i %s' % self.private_key)
if self.ssh_port <> 22: