aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authordystopic <dystopic@espiv.net>2015-04-05 12:08:39 +0300
committerdystopic <dystopic@espiv.net>2015-04-05 12:08:39 +0300
commit568b1d68d9bc94791e37aff3a6658643c6590adb (patch)
treef5ef3fb69be733d55da16658932a17c7d665f92d /templates
parenta9e4f0b5a75796c56c5cfedc8c0bffc0c386e3bc (diff)
downloadpuppet-backupninja-568b1d68d9bc94791e37aff3a6658643c6590adb.tar.gz
puppet-backupninja-568b1d68d9bc94791e37aff3a6658643c6590adb.tar.bz2
Add features for duplicity type backup
Add support for increments,keepincroffulls,desturl Include proper backupninja::client:: class (as does rsync)
Diffstat (limited to 'templates')
-rw-r--r--templates/dup.conf.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/dup.conf.erb b/templates/dup.conf.erb
index 2a61443..4f15e78 100644
--- a/templates/dup.conf.erb
+++ b/templates/dup.conf.erb
@@ -35,9 +35,12 @@
[dest]
<%= 'incremental = ' + incremental if incremental %>
+<%= 'increments = ' + increments if increments %>
<%= 'keep = ' + keep if keep %>
+<%= 'keepincroffulls = ' + keepincroffulls if keepincroffulls %>
<%= 'bandwidthlimit = ' + bandwidthlimit if bandwidthlimit %>
<%= 'sshoptions = ' + sshoptions if sshoptions %>
<%= 'destdir = ' + destdir if destdir %>
<%= 'desthost = ' + desthost if desthost %>
<%= 'destuser = ' + destuser if destuser %>
+<%= 'desturl = ' + desturl if desturl %>