diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-04-17 19:38:22 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-04-17 19:38:22 -0300 |
commit | 0615865bbcecb99bdd05fcaccfac341659e886e8 (patch) | |
tree | 043272f780a58139158e17206e4cec24f7bda4b4 | |
parent | c6418f2f6e90ea5ae4c3ce8348538e76f9f74390 (diff) | |
download | backupninja-0615865bbcecb99bdd05fcaccfac341659e886e8.tar.gz backupninja-0615865bbcecb99bdd05fcaccfac341659e886e8.tar.bz2 |
Use ssh config option (#4379)bug/4379
-rw-r--r-- | handlers/rsync.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/rsync.in b/handlers/rsync.in index b2c4b59..047e7a8 100644 --- a/handlers/rsync.in +++ b/handlers/rsync.in @@ -258,7 +258,7 @@ function eval_config { nice="" fi - ssh_cmd_base="ssh -T -o PasswordAuthentication=no -p $port -i $id_file" + ssh_cmd_base="$ssh -T -o PasswordAuthentication=no -p $port -i $id_file" ssh_cmd="$ssh_cmd_base $user@$host" if [ "$from" == "remote" ] || [ "$dest" == "remote" ]; then |