diff --git a/Vagrantfile b/Vagrantfile index 15689ae..8fc530f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 diff --git a/tasks/main.yml b/tasks/main.yml index 2f42f82..ff8d889 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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'