21 lines
668 B
YAML
21 lines
668 B
YAML
|
---
|
||
|
- name: GIT backup crontask configured
|
||
|
cron:
|
||
|
name: "GIT backup"
|
||
|
user: "{{ backup_user_git }}"
|
||
|
weekday: "{{ backup_git_cron_weekday }}"
|
||
|
hour: "{{ backup_git_cron_hour }}"
|
||
|
minute: "{{ backup_git_cron_minute }}"
|
||
|
job: "{{ backup_scripts_folder }}/backup_git.sh"
|
||
|
notify: restart cron
|
||
|
|
||
|
- name: GIT archives backup crontask configured
|
||
|
cron:
|
||
|
name: "GIT Archive Backup"
|
||
|
user: "{{ backup_user_git }}"
|
||
|
weekday: "{{ backup_git_archive_cron_weekday }}"
|
||
|
hour: "{{ backup_git_archive_cron_hour }}"
|
||
|
minute: "{{ backup_git_archive_cron_minute }}"
|
||
|
job: "{{ backup_scripts_folder }}/backup_git_archive.sh"
|
||
|
notify: restart cron
|