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
2021-12-07 19:50:02 +01:00

29 lines
861 B
YAML

---
- name: run optional versionscheck
ansible.builtin.include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: deploy restic template
ansible.builtin.template:
src: templates/restic_forget_snapshots.j2
dest: /opt/restic-backup.sh
group: "{{ restic_archiver__owner }}"
owner: "{{ restic_archiver__group }}"
mode: 0700
become: true
- name: setup logrotate
ansible.builtin.include_tasks: logs.yml
when: restic_archiver__log_output | bool
- name: create cronjob
ansible.builtin.include_tasks: cron.yml
when: not restic_archiver__use_systemd_timer | bool
- name: create systemd timer
ansible.builtin.include_tasks: systemd.yml
when: restic_archiver__use_systemd_timer | bool
- name: install requirements for mailing
ansible.builtin.include_tasks: mail.yml
when: restic_archiver__mailsummary | bool