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/tasks/main.yml
2020-12-10 19:44:40 +01:00

46 lines
1.2 KiB
YAML

---
- include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: use template
template:
src: templates/restic_forget_snapshots.j2
dest: /tmp/test
group: "{{ restic_archiver__dir_owner }}"
owner: "{{ restic_archiver__dir_group }}"
mode: 0700
# no_log: true
#- include_tasks: template.yml
#- name: add OS specific variables
# include_vars: '{{ loop_vars }}'
# with_first_found:
# - files:
# - '{{ distribution }}-{{ distribution_version }}.yml'
# - '{{ distribution }}-{{ distribution_major_version }}.yml'
# - '{{ distribution }}.yml'
# - '{{ ansible_os_family }}.yml'
# - '{{ ansible_system }}.yml'
# - 'defaults.yml'
# paths:
## - 'vars'
# loop_control:
# loop_var: loop_vars
# vars:
# distribution: '{{ ansible_distribution }}'
# distribution_version: '{{ ansible_distribution_version }}'
# distribution_major_version: '{{ ansible_distribution_major_version }}'
# tags:
# - configuration
# - packages
#- name: Ensure restic directories exist
# file:
# state: 'directory'
# path: '{{ item }}'
# mode: '0755'
# owner: '{{ restic_dir_owner }}'
# group: '{{ restic_dir_group }}'
# with_items: '{{ restic_create_paths }}'