Fix wrong yaml parsing (#253)

This commit is contained in:
Javier Bértoli 2019-02-10 15:35:25 -03:00 committed by Niels Abspoel
parent 6852f87b7f
commit 64434daecb

View File

@ -29,7 +29,7 @@ include:
- module: apache-reload
- service: apache
- context:
apache: {{ apache }}
apache: {{ apache | json }}
{{ apache.vhostdir }}:
file.directory:
@ -72,7 +72,7 @@ include:
- module: apache-reload
- service: apache
- context:
apache: {{ apache }}
apache: {{ apache | json }}
{% endif %}
@ -104,7 +104,7 @@ include:
- module: apache-reload
- service: apache
- context:
apache: {{ apache }}
apache: {{ apache | json }}
{% endif %}
{% if grains['os_family']=="FreeBSD" %}
@ -136,5 +136,5 @@ include:
- module: apache-reload
- service: apache
- context:
apache: {{ apache }}
apache: {{ apache | json }}
{% endif %}