Moved site enabler task out of handler

This commit is contained in:
Corbin Bartsch 2022-04-11 18:20:23 -04:00
parent 1d1348c876
commit 05c9099fdf
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
3 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,4 @@
---
- name: Enable Nextcloud site
ansible.builtin.command: a2ensite nextcloud.conf
- name: Restart Apache
ansible.builtin.systemd:
name: httpd

4
tasks/apache2_site.yaml Normal file
View File

@ -0,0 +1,4 @@
---
- name: Enable Nextcloud site
ansible.builtin.command: a2ensite nextcloud.conf
when: not nextcloud_nginx and not nextcloud_ssl

View File

@ -10,6 +10,10 @@
include_tasks: apache2_modules.yaml
when: not nextcloud_nginx
- name: Enable Apache2 site
include_tasks: apache2_site.yaml
when: not nextcloud_nginx
- name: Create nginx config
include_tasks: nginx_template.yaml
when: nextcloud_nginx