change include to include_tasks #26

Merged
meaz merged 2 commits from include_tasks into main 2023-01-19 08:07:38 +01:00
2 changed files with 5 additions and 4 deletions

1
Vagrantfile vendored
View File

@ -16,5 +16,6 @@ Vagrant.configure("2") do |config|
prosody.vm.network "forwarded_port", guest: 443, host: 4444, host_ip: "192.168.33.5"
prosody.vm.network "forwarded_port", guest: 8080, host: 8081, host_ip: "192.168.33.5"
prosody.vm.network "private_network", ip: "192.168.33.5"
config.vm.provision "shell", inline: "apt install acl"
end
end

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'