mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-09 20:32:38 +01:00
dup: document how to write sftp-compatible (and thus new-duplicity-compatible)
sshoptions setting (Closes: #388543)
This commit is contained in:
parent
d395ae94a5
commit
054f9fb2ad
@ -60,7 +60,8 @@ version 0.9.4 -- unreleased
|
|||||||
. Does not pretend anymore that duplicity can work without
|
. Does not pretend anymore that duplicity can work without
|
||||||
any passphrase
|
any passphrase
|
||||||
. Support duplicity 0.4.2 (with Debian patches applied; upstream's
|
. Support duplicity 0.4.2 (with Debian patches applied; upstream's
|
||||||
0.4.3 will integrate them)
|
0.4.3 will integrate them); documented how to write sftp-compatible
|
||||||
|
sshoptions (Closes: #388543)
|
||||||
. Now forbid to (try to) include /.
|
. Now forbid to (try to) include /.
|
||||||
sys:
|
sys:
|
||||||
. Many more system checks were added, (thanks to Petr Klíma)
|
. Many more system checks were added, (thanks to Petr Klíma)
|
||||||
|
8
NEWS
8
NEWS
@ -14,6 +14,14 @@ backupninja (0.9.4-1) UNRELEASED
|
|||||||
Please read the new /usr/share/doc/backupninja/examples/example.dup
|
Please read the new /usr/share/doc/backupninja/examples/example.dup
|
||||||
or /usr/share/doc/backupninja/examples/example.rdiff file, and update
|
or /usr/share/doc/backupninja/examples/example.rdiff file, and update
|
||||||
your own configuration files if needed.
|
your own configuration files if needed.
|
||||||
|
|
||||||
|
* duplicity: duplicity now uses sftp, which does not support all scp
|
||||||
|
command line options; you thus have to convert the sshoptions setting
|
||||||
|
in your *.dup configuration files, to sftp-compatible syntax; for
|
||||||
|
example, you can replace:
|
||||||
|
sshoptions = -i /root/.ssh/id_dsa_duplicity
|
||||||
|
with:
|
||||||
|
sshoptions = -o IdentityFile=/root/.ssh/id_dsa_duplicity
|
||||||
|
|
||||||
backupninja (0.9.2-1) unstable; urgency=low
|
backupninja (0.9.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -119,8 +119,10 @@ exclude = /home/*/.gnupg
|
|||||||
# bandwith limit, in kbit/s ; default is 0, i.e. no limit
|
# bandwith limit, in kbit/s ; default is 0, i.e. no limit
|
||||||
#bandwidthlimit = 128
|
#bandwidthlimit = 128
|
||||||
|
|
||||||
# passed directly to ssh and scp
|
# passed directly to ssh, scp (and sftp in duplicity >=0.4.2)
|
||||||
sshoptions = -i /root/.ssh/id_dsa_duplicity
|
# warning: sftp does not support all scp options, especially -i; as
|
||||||
|
# a workaround, you can use "-o <SSHOPTION>"
|
||||||
|
sshoptions = -o IdentityFile=/root/.ssh/id_dsa_duplicity
|
||||||
|
|
||||||
# put the backups under this directory
|
# put the backups under this directory
|
||||||
destdir = /backups
|
destdir = /backups
|
||||||
|
@ -401,8 +401,10 @@ keep = $dup_keep
|
|||||||
#bandwidthlimit = 128
|
#bandwidthlimit = 128
|
||||||
bandwidthlimit = $dup_bandwidth
|
bandwidthlimit = $dup_bandwidth
|
||||||
|
|
||||||
# passed directly to ssh and scp
|
# passed directly to ssh, scp (and sftp in duplicity >=0.4.2)
|
||||||
#sshoptions = -i /root/.ssh/id_dsa_duplicity
|
# warning: sftp does not support all scp options, especially -i; as
|
||||||
|
# a workaround, you can use "-o <SSHOPTION>"
|
||||||
|
#sshoptions = -o IdentityFile=/root/.ssh/id_dsa_duplicity
|
||||||
sshoptions = $dup_sshoptions
|
sshoptions = $dup_sshoptions
|
||||||
|
|
||||||
# put the backups under this directory
|
# put the backups under this directory
|
||||||
|
Loading…
Reference in New Issue
Block a user