a2(en|dis)site requires the full name incl. the confext.

This commit is contained in:
Elias Probst 2015-08-28 16:01:38 +02:00
parent 7406e62d23
commit 0ed941bd4e

View File

@ -9,9 +9,9 @@
{% if 'name' in pillar['apache']['register-site'][site] and 'state' in pillar['apache']['register-site'][site] %}
{% if pillar['apache']['register-site'][site]['state'] == 'enabled' %}
{% set a2modid = "a2ensite " ~ pillar['apache']['register-site'][site]['name'] %}
{% set a2modid = "a2ensite " ~ pillar['apache']['register-site'][site]['name'] ~ apache.confext %}
{% else %}
{% set a2modid = "a2dissite " ~ pillar['apache']['register-site'][site]['name'] %}
{% set a2modid = "a2dissite " ~ pillar['apache']['register-site'][site]['name'] ~ apache.confext %}
{% endif %}
{{ a2modid }}:
cmd.run: