change include to include_tasks

This commit is contained in:
meaz 2023-01-09 07:08:50 +01:00
parent 41e62b1685
commit df035a9e17
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
---
- name: Include install
include: install.yml
include_tasks: install.yml
- name: Include config
include: configure.yml
include_tasks: configure.yml
- name: Include Firewall
include: firewall.yml
include_tasks: firewall.yml
when: firewall_module_enabled == 'true'
- name: include saslauth
include: saslauthd.yml
include_tasks: saslauthd.yml
when: prosody_saslauth == 'true'