fix ssh cipher

This commit is contained in:
ssamson-tis 2015-03-25 15:22:56 +01:00
parent d554c478f2
commit 30fd30d506

View File

@ -311,7 +311,7 @@ class backup_rsync_ssh(backup_rsync):
type = 'rsync+ssh' type = 'rsync+ssh'
required_params = backup_generic.required_params + ['remote_user','remote_dir','private_key'] required_params = backup_generic.required_params + ['remote_user','remote_dir','private_key']
optional_params = backup_generic.optional_params + ['compression','bwlimit','ssh_port','exclude_list','protect_args','overload_args', 'cipher_spec'] optional_params = backup_generic.optional_params + ['compression','bwlimit','ssh_port','exclude_list','protect_args','overload_args', 'cipher_spec']
cipher_spec = 'cipher_spec' cipher_spec = 'blowfish'
register_driver(backup_rsync) register_driver(backup_rsync)