ansible/roles/restic/defaults/main.yaml

30 lines
694 B
YAML
Raw Normal View History

2019-12-15 06:40:49 +00:00
---
restic_service_name: restic.service
restic_service_state: started
restic_service_enabled: yes
restic_arch: amd64
2022-08-30 11:50:06 +00:00
restic_version: 0.14.0
2019-12-15 06:40:49 +00:00
restic_url: "https://github.com/restic/restic/releases/download/v{{ restic_version }}/restic_{{ restic_version }}_linux_{{ restic_arch }}.bz2"
2022-08-30 11:50:06 +00:00
restic_checksum: sha256:c8da7350dc334cd5eaf13b2c9d6e689d51e7377ba1784cc6d65977bd44ee1165
2019-12-15 06:40:49 +00:00
restic_bin_path: /usr/local/bin
restic_etc_path: /etc/restic
restic_path: "{{ restic_bin_path }}/restic"
2020-04-21 03:28:21 +00:00
restic_self_update: true
2019-12-15 06:40:49 +00:00
2019-12-16 02:51:51 +00:00
restic_global_exclude:
- /dev
- /media
- /mnt
- /proc
- /run
- /sys
- /tmp
- /var/tmp
- /var/lib/lxcfs/cgroup
2019-12-15 06:40:49 +00:00
restic_repos: []
restic_jobs: []
restic_tidy_enabled: false