Skip to content
Snippets Groups Projects
Commit ee371e51 authored by Chris Croome's avatar Chris Croome
Browse files

quotes added

parent 7153f1b4
No related branches found
No related tags found
1 merge request!2MPM switching and TLS 1.3
Pipeline #9756 passed
......@@ -5,7 +5,7 @@
- name: Apache conf disabled
command: "a2disconf {{ conf }}"
args:
removes: /etc/apache2/conf-enabled/{{ conf }}.conf
removes: "/etc/apache2/conf-enabled/{{ conf }}.conf"
when:
- apache_conf_disabled is defined
- apache_conf_disabled != [] )
......@@ -18,7 +18,7 @@
- name: Apache conf enabled
command: "a2enconf {{ conf }}"
args:
creates: /etc/apache2/conf-enabled/{{ conf }}.conf
creates: "/etc/apache2/conf-enabled/{{ conf }}.conf"
when:
- apache_conf_enabled is defined
- apache_conf_enabled != [] )
......
......@@ -5,7 +5,7 @@
- name: Apache sites disabled
command: "a2disconf {{ conf }}"
args:
removes: /etc/apache2/conf-enabled/{{ conf }}.conf
removes: "/etc/apache2/conf-enabled/{{ conf }}.conf"
when:
- apache_sites_disabled is defined
- apache_sites_disabled != []
......@@ -18,7 +18,7 @@
- name: Apache sites enabled
command: "a2enconf {{ conf }}"
args:
creates: /etc/apache2/conf-enabled/{{ conf }}.conf
creates: "/etc/apache2/conf-enabled/{{ conf }}.conf"
when:
- apache_sites_enabled is defined
- apache_sites_enabled != []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment