2019-12-15 06:40:49 +00:00
|
|
|
---
|
|
|
|
- name: create job config directory
|
|
|
|
file:
|
|
|
|
path: "{{ restic_etc_path }}/jobs/{{ item.name }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0755
|
|
|
|
state: directory
|
|
|
|
|
2019-12-16 02:51:51 +00:00
|
|
|
- name: create repo environment helper
|
|
|
|
template:
|
|
|
|
src: job-env.sh.j2
|
|
|
|
dest: "{{ restic_etc_path }}/jobs/{{ item.name }}/env.sh"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0400
|
|
|
|
|
2019-12-15 06:40:49 +00:00
|
|
|
- name: create job exclude file
|
|
|
|
template:
|
|
|
|
src: exclude.txt.j2
|
|
|
|
dest: "{{ restic_etc_path }}/jobs/{{ item.name }}/exclude.txt"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
|
|
|
|
- name: create cron
|
|
|
|
cron:
|
|
|
|
name: "restic {{ item.name }} job"
|
|
|
|
hour: "{{ item.cron.hour | default(omit) }}"
|
2019-12-16 02:51:51 +00:00
|
|
|
minute: "{{ item.cron.minute | default(60 | random(seed=inventory_hostname)) }}"
|
2019-12-15 06:40:49 +00:00
|
|
|
day: "{{ item.cron.day | default(omit) }}"
|
|
|
|
month: "{{ item.cron.month | default(omit) }}"
|
|
|
|
weekday: "{{ item.cron.weekday | default(omit) }}"
|
|
|
|
user: "{{ item.cron.user | default('root') }}"
|
|
|
|
state: "{{ item.cron.state | default('present') }}"
|
2019-12-16 02:51:51 +00:00
|
|
|
job: "{{ restic_bin_path }}/restic-job {{ item.name }}"
|