ansible-restic/defaults/main.yml
Christian Scheb fd989a95b1
Fix restic download links (#10)
Co-authored-by: Christian Scheb <christian.scheb@stackfuel.com>
2024-02-20 18:28:36 +01:00

32 lines
732 B
YAML

---
restic_install: false
restic_version: 0.14.0
restic_path: /usr/local/bin/restic
restic_user: root
restic_user_home: /root
restic_repository_name: restic
restic_default_folders:
- { path: "/etc" }
- { path: "/var/log" }
- { path: "/root", exclude: "--exclude .cache" }
restic_folders: []
restic_databases: []
restic_dump_compression_enabled: false
restic_forget: true
restic_forget_keep_within: 30d
restic_prune: true
restic_check: true
restic_ssh_enabled: true
restic_ssh_host: backup
restic_ssh_port: 22
restic_ssh_private_key_path: "/root/.ssh/backup"
restic_systemd_timer_on_calender: "*-*-* 03:00:00"
restic_systemd_timer_randomized_delay_sec: 0
restic_arch_map:
i386: '386'
x86_64: 'amd64'
aarch64: 'arm64'