mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-09 12:22:40 +01:00
rsync: remove unused config parameter "ssh", fixes #4379
This commit is contained in:
parent
cb7e5aa4e0
commit
0991afe57b
@ -119,9 +119,6 @@ include = /var
|
||||
exclude = exclude_folder1
|
||||
exclude = exclude_folder2
|
||||
|
||||
# ssh command line (remote only)
|
||||
#ssh = ssh
|
||||
|
||||
# ssh or rsync (remote source only)
|
||||
#protocol = ssh
|
||||
|
||||
@ -167,9 +164,6 @@ exclude = exclude_folder2
|
||||
# when "yes", test the connection for a remote source before backup
|
||||
#testconnect = no
|
||||
|
||||
# ssh command line (remote dest only)
|
||||
#ssh = ssh
|
||||
|
||||
# ssh or rsync (remote dest only)
|
||||
#protocol = ssh
|
||||
|
||||
|
@ -141,7 +141,6 @@ function eval_config {
|
||||
if [ "$from" == "remote" ]; then
|
||||
getconf testconnect no
|
||||
getconf protocol ssh
|
||||
getconf ssh ssh
|
||||
getconf host
|
||||
|
||||
if [ "$protocol" == "ssh" ]; then
|
||||
@ -183,7 +182,6 @@ function eval_config {
|
||||
if [ "$dest" == "remote" ]; then
|
||||
getconf testconnect no
|
||||
getconf protocol ssh
|
||||
getconf ssh ssh
|
||||
getconf host
|
||||
|
||||
if [ "$protocol" == "ssh" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user