dup handler: added option to perform a full backup instead of an incremental one.
[matthijs/upstream/backupninja.git] / handlers / dup
index 176ac3eae8e5c3066371d07fd4a2086d42b5e9e2..8d38cfc5996f212a5b1840de7e939ac3c31966a3 100644 (file)
@@ -19,6 +19,7 @@ getconf vsinclude
 getconf exclude
 
 setsection dest
+getconf incremental yes
 getconf keep 60
 getconf sshoptions
 getconf bandwidthlimit 0
@@ -92,6 +93,10 @@ if [ "$keep" != "yes" ]; then
     execstr="${execstr}--remove-older-than $keep "
 fi
 
+if [ "$incremental" == "no" ]; then
+    execstr="${execstr}--full "
+fi
+
 execstr_serverpart="scp://$destuser@$desthost/$destdir"
 execstr_clientpart="/"