2014-11-21 00:37:14 +01:00
|
|
|
{% 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 %}
|
|
|
|
|
2015-03-26 13:00:11 +01:00
|
|
|
{% elif grains['os_family']=="RedHat" %}
|
2015-03-24 17:48:53 +01:00
|
|
|
|
|
|
|
include:
|
|
|
|
- apache
|
|
|
|
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:enabled', []) %}
|
2015-08-19 16:41:53 +02:00
|
|
|
find /etc/httpd/ -name '*.conf' -type f -exec sed -i -e 's/\(^#\)\(LoadModule.{{ module }}_module\)/\2/g' {} \;:
|
2015-03-24 17:48:53 +01:00
|
|
|
cmd.run:
|
2015-10-20 19:41:51 +02:00
|
|
|
- unless: httpd -M 2> /dev/null | grep '\s{{ module }}_module'
|
2015-03-24 17:48:53 +01:00
|
|
|
- order: 225
|
|
|
|
- require:
|
|
|
|
- pkg: apache
|
|
|
|
- watch_in:
|
|
|
|
- module: apache-restart
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:disabled', []) %}
|
2015-08-19 16:41:53 +02:00
|
|
|
find /etc/httpd/ -name '*.conf' -type f -exec sed -i -e 's/\(^LoadModule.{{ module }}_module\)/#\1/g' {} \;:
|
2015-03-24 17:48:53 +01:00
|
|
|
cmd.run:
|
2015-10-20 19:41:51 +02:00
|
|
|
- onlyif: httpd -M 2> /dev/null | grep '\s{{ module }}_module'
|
2015-03-24 17:48:53 +01:00
|
|
|
- order: 225
|
|
|
|
- require:
|
|
|
|
- pkg: apache
|
|
|
|
- watch_in:
|
|
|
|
- module: apache-restart
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endif %}
|