restic: do not run backup and forget by default

This commit is contained in:
Nicolas KAROLAK 2018-06-13 10:32:19 +02:00 committed by Jerome Charaoui
parent 7e55bb789a
commit 570c3aae5e
2 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,10 @@
[general] [general]
# Create a new backup of files and/or directories [yes/no] # Create a new backup of files and/or directories [yes/no]
#run_backup = yes run_backup = yes
# Remove snapshots from the repository [yes/no] # Remove snapshots from the repository [yes/no]
#run_forget = yes #run_forget = no
# Check the repository for errors [yes/no] # Check the repository for errors [yes/no]
#run_check = no #run_check = no

View File

@ -16,8 +16,8 @@ function export_debug {
setsection general setsection general
getconf run_backup "yes" getconf run_backup "no"
getconf run_forget "yes" getconf run_forget "no"
getconf run_check "no" getconf run_check "no"
getconf run_prune "no" getconf run_prune "no"
getconf run_rebuild_index "no" getconf run_rebuild_index "no"