|
|
@@ -0,0 +1,28 @@ |
|
|
|
{% if grains['os_family']=="Debian" %} |
|
|
|
|
|
|
|
include: |
|
|
|
- apache |
|
|
|
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:enabled', []) %} |
|
|
|
a2enmod {{ module }}: |
|
|
|
cmd.run: |
|
|
|
- unless: ls /etc/apache2/mods-enabled/{{ module }}.load |
|
|
|
- order: 225 |
|
|
|
- require: |
|
|
|
- pkg: apache |
|
|
|
- watch_in: |
|
|
|
- module: apache-restart |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:disabled', []) %} |
|
|
|
a2dismod {{ module }}: |
|
|
|
cmd.run: |
|
|
|
- onlyif: ls /etc/apache2/mods-enabled/{{ module }}.load |
|
|
|
- order: 225 |
|
|
|
- require: |
|
|
|
- pkg: apache |
|
|
|
- watch_in: |
|
|
|
- module: apache-restart |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% endif %} |