Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raT
backupninja
Commits
054f9fb2
Commit
054f9fb2
authored
18 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
dup: document how to write sftp-compatible (and thus new-duplicity-compatible)
sshoptions setting (Closes: #388543)
parent
d395ae94
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+2
-1
2 additions, 1 deletion
ChangeLog
NEWS
+8
-0
8 additions, 0 deletions
NEWS
examples/example.dup
+4
-2
4 additions, 2 deletions
examples/example.dup
handlers/dup.helper
+4
-2
4 additions, 2 deletions
handlers/dup.helper
with
18 additions
and
5 deletions
ChangeLog
+
2
−
1
View file @
054f9fb2
...
...
@@ -60,7 +60,8 @@ version 0.9.4 -- unreleased
. Does not pretend anymore that duplicity can work without
any passphrase
. 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 /.
sys:
. Many more system checks were added, (thanks to Petr Klíma)
...
...
This diff is collapsed.
Click to expand it.
NEWS
+
8
−
0
View file @
054f9fb2
...
...
@@ -15,6 +15,14 @@ backupninja (0.9.4-1) UNRELEASED
or /usr/share/doc/backupninja/examples/example.rdiff file, and update
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
WARNING FOR DUPLICITY USERS
...
...
This diff is collapsed.
Click to expand it.
examples/example.dup
+
4
−
2
View file @
054f9fb2
...
...
@@ -119,8 +119,10 @@ exclude = /home/*/.gnupg
# bandwith limit, in kbit/s ; default is 0, i.e. no limit
#bandwidthlimit = 128
# passed directly to ssh and scp
sshoptions = -i /root/.ssh/id_dsa_duplicity
# passed directly to ssh, scp (and sftp in duplicity >=0.4.2)
# 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
destdir = /backups
...
...
This diff is collapsed.
Click to expand it.
handlers/dup.helper
+
4
−
2
View file @
054f9fb2
...
...
@@ -401,8 +401,10 @@ keep = $dup_keep
#bandwidthlimit = 128
bandwidthlimit =
$dup_bandwidth
# passed directly to ssh and scp
#sshoptions = -i /root/.ssh/id_dsa_duplicity
# passed directly to ssh, scp (and sftp in duplicity >=0.4.2)
# 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
# put the backups under this directory
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment