mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-09 21:33:31 +01:00
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
---
|
|
# tasks file for skeleton
|
|
|
|
- name: Create backup credentials
|
|
template:
|
|
src: restic_access_Linux.j2
|
|
dest: '{{ restic_script_dir }}/access-{{ item.name }}.sh'
|
|
mode: '0700'
|
|
owner: '{{ restic_dir_owner }}'
|
|
group: '{{ restic_dir_group }}'
|
|
no_log: true
|
|
with_items: '{{ restic_backups }}'
|
|
when:
|
|
- item.name is defined
|
|
- item.src is defined or item.stdin is defined
|
|
- item.src is defined or item.stdin and item.stdin_cmd is defined
|
|
- item.repo in restic_repos
|
|
|
|
- name: Create backup script
|
|
template:
|
|
src: restic_script_Linux.j2
|
|
dest: '{{ restic_script_dir }}/backup-{{ item.name }}.sh'
|
|
mode: '0700'
|
|
owner: '{{ restic_dir_owner }}'
|
|
group: '{{ restic_dir_group }}'
|
|
no_log: true
|
|
with_items: '{{ restic_backups }}'
|
|
when:
|
|
- item.name is defined
|
|
- item.src is defined or item.stdin is defined
|
|
- item.src is defined or item.stdin and item.stdin_cmd is defined
|
|
- item.repo in restic_repos
|
|
|
|
- name: Setup CRON jobs
|
|
cron:
|
|
name: 'arillso.restic backup {{ item.name }}'
|
|
job: 'CRON=true {{ restic_script_dir }}/backup-{{ item.name }}.sh'
|
|
minute: '{{ item.schedule_minute | default("*") }}'
|
|
hour: '{{ item.schedule_hour | default("*") }}'
|
|
weekday: '{{ item.schedule_weekday | default("*") }}'
|
|
month: '{{ item.schedule_month | default("*") }}'
|
|
state: present
|
|
become: true
|
|
no_log: true
|
|
when:
|
|
- restic_create_cron
|
|
- item.name is defined
|
|
- item.scheduled | default(false)
|
|
with_items: '{{ restic_backups }}'
|