Replace include: with include_tasks:

The include: method was deprecated with Ansible Core 2.19; replace it
with include_tasks.
This commit is contained in:
2026-03-02 00:06:48 -05:00
parent b0d0467210
commit d241d5d39a
9 changed files with 23 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
---
- include: enable.yml
- include_tasks: enable.yml
when: pvc_autobackup.enabled
- include: disable.yml
- include_tasks: disable.yml
when: not pvc_autobackup.enabled