Skip to content
Snippets Groups Projects
Commit 64434dae authored by Javier Bértoli's avatar Javier Bértoli Committed by Niels Abspoel
Browse files

Fix wrong yaml parsing (#253)

parent 6852f87b
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ include: ...@@ -29,7 +29,7 @@ include:
- module: apache-reload - module: apache-reload
- service: apache - service: apache
- context: - context:
apache: {{ apache }} apache: {{ apache | json }}
{{ apache.vhostdir }}: {{ apache.vhostdir }}:
file.directory: file.directory:
...@@ -72,7 +72,7 @@ include: ...@@ -72,7 +72,7 @@ include:
- module: apache-reload - module: apache-reload
- service: apache - service: apache
- context: - context:
apache: {{ apache }} apache: {{ apache | json }}
{% endif %} {% endif %}
...@@ -104,7 +104,7 @@ include: ...@@ -104,7 +104,7 @@ include:
- module: apache-reload - module: apache-reload
- service: apache - service: apache
- context: - context:
apache: {{ apache }} apache: {{ apache | json }}
{% endif %} {% endif %}
{% if grains['os_family']=="FreeBSD" %} {% if grains['os_family']=="FreeBSD" %}
...@@ -136,5 +136,5 @@ include: ...@@ -136,5 +136,5 @@ include:
- module: apache-reload - module: apache-reload
- service: apache - service: apache
- context: - context:
apache: {{ apache }} apache: {{ apache | json }}
{% endif %} {% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment