1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_restic_archiver.git synced 2024-08-16 10:09:49 +02:00
ansible_role_restic_archiver/defaults/main.yml

40 lines
1 KiB
YAML
Raw Normal View History

2019-08-12 17:23:59 +02:00
---
2020-12-09 17:26:16 +01:00
# which repos should we cleanup by default
restic_archiver__repos: {}
2020-12-09 17:42:54 +01:00
# - name: example_server:
2020-12-09 17:26:16 +01:00
# location: /srv/restic/example_server_repo
# password: securepassword4eXaMpleSserver
2020-12-09 17:42:54 +01:00
# - name: other_server
# location: /srv/restic/other_server_repo
# password: xtrasecuredifferentpassword4other
# keep_last: 5
# keep_hourly: 4
# keep_daily: 1
# keep_weekly: 1
# keep_monthly: 1
# keep_yearly: 1
# keep_within: 1
2020-12-09 17:26:16 +01:00
# how long should we store all backups by default
restic_archiver__keep: 9
restic_archiver__keep_hourly: 28
restic_archiver__keep_daily: 26
restic_archiver__keep_weekly: 8
restic_archiver__keep_monthly: 13
restic_archiver__keep_yearly: 12
2019-08-12 17:23:59 +02:00
# defaults file for skeleton
2019-08-13 13:26:40 +02:00
restic_install_path: '/usr/bin'
2019-08-12 17:23:59 +02:00
restic_script_dir: '~/restic'
restic_repos: {}
restic_archiver__backups: []
2019-08-13 13:26:40 +02:00
restic_create_cron: false
2020-12-09 17:42:54 +01:00
restic_archiver__dir_owner: '{{ ansible_user | default(ansible_user_id) }}'
restic_archiver__dir_group: '{{ ansible_user | default(ansible_user_id) }}'
2020-12-07 18:32:04 +01:00
# version check for this playbook
2020-12-09 17:26:16 +01:00
submodules_versioncheck: false