mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-09 13:23:30 +01:00
Properly respect restic_do_not_cleanup_cron
This commit is contained in:
parent
dfef3cc26c
commit
6bed15cfcd
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
- name: (SCHEDULE) delete old cron entry from previous versions of this role
|
- name: (SCHEDULE) delete old cron entry from previous versions of this role
|
||||||
ansible.builtin.include_tasks: delete_legacy_cron_entry.yml
|
ansible.builtin.include_tasks: delete_legacy_cron_entry.yml
|
||||||
when: restic_do_not_cleanup_cron | bool
|
when: not restic_do_not_cleanup_cron | bool
|
||||||
|
|
||||||
- name: (SCHEDULE) install restic via cronjob
|
- name: (SCHEDULE) install restic via cronjob
|
||||||
ansible.builtin.include_tasks: restic_create_cron.yml
|
ansible.builtin.include_tasks: restic_create_cron.yml
|
||||||
|
@ -30,3 +30,4 @@
|
||||||
- ansible_service_mgr == 'systemd'
|
- ansible_service_mgr == 'systemd'
|
||||||
- not restic_force_cron | default(false)
|
- not restic_force_cron | default(false)
|
||||||
- restic_schedule_type != "cronjob"
|
- restic_schedule_type != "cronjob"
|
||||||
|
- not restic_do_not_cleanup_cron | bool
|
||||||
|
|
Loading…
Reference in a new issue