ansible_role_restic/tasks/distribution/Linux.yml

18 lines
503 B
YAML
Raw Normal View History

2019-08-14 16:02:02 +02:00
---
# tasks file for skeleton
- name: Create backup script
template:
2019-08-14 16:03:03 +02:00
src: restic_script_Linux.j2
2019-08-14 16:02:02 +02:00
dest: '{{ restic_script_dir }}/backup-{{ item.name }}.sh'
mode: '0700'
owner: '{{ restic_dir_owner }}'
group: '{{ restic_dir_group }}'
2019-08-14 16:59:32 +02:00
no_log: true
2019-08-14 16:02:02 +02:00
with_items: '{{ restic_backups }}'
when:
- item.name is defined
2019-08-15 08:36:57 +02:00
- item.src is defined or item.stdin is defined
- item.src is defined or item.stdin == true and item.stdin_cmd is defined
2019-08-14 16:59:32 +02:00
- item.repo in restic_repos