Merge pull request #91 from varac/fix_crontab_cleanup

Properly respect restic_do_not_cleanup_cron
This commit is contained in:
L3D 2022-11-30 10:44:32 +01:00 committed by GitHub
commit 9cfe610337
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@
- name: (SCHEDULE) delete old cron entry from previous versions of this role
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
ansible.builtin.include_tasks: restic_create_cron.yml
@ -30,3 +30,4 @@
- ansible_service_mgr == 'systemd'
- not restic_force_cron | default(false)
- restic_schedule_type != "cronjob"
- not restic_do_not_cleanup_cron | bool