mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2025-05-01 01:17:24 +02:00
10 lines
339 B
YAML
10 lines
339 B
YAML
---
|
|
- name: Ensure legacy hooks aren't used
|
|
ansible.builtin.assert:
|
|
that:
|
|
- borgmatic_failure_command is undefined
|
|
- borgmatic_before_backup_command is undefined
|
|
- borgmatic_after_backup_command is undefined
|
|
msg: Please use the new borgmatic_hooks variable instead of individual before/after/failure hooks.
|
|
...
|