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/vars/defaults.yml

23 lines
725 B
YAML
Raw Normal View History

2019-08-13 13:26:40 +02:00
---
# we use a platform map to decipher system version
_platform_map:
i386: 386
x86_64: amd64
aarch64: arm64
armv7l: arm
armv6l: arm
restic_create_paths:
2019-08-14 16:59:32 +02:00
- '{{ restic_install_path }}/bin'
- '{{ restic_script_dir }}'
2019-08-15 08:36:57 +02:00
2019-08-15 08:51:25 +02:00
restic_bin_bath: '{{ restic_download_path }}/bin/restic-{{ restic_version }}'
2019-08-15 13:07:53 +02:00
restic_url_r: 'https://github.com/restic/restic/releases/download/'
arch: '{{ ansible_architecture }}'
restic_platform: '{{ _platform_map[arch] | default(arch) }}'
restic_system: '{{ ansible_system | lower }}'
restic_url_v: 'v{{ restic_version }}/restic_{{ restic_version }}_'
restic_file: '{{ restic_system }}_{{ restic_platform }}.bz2'
2019-08-17 09:33:57 +02:00
restic_url_default: '{{ restic_url_r }}{{ restic_url_v }}{{ restic_file }}'