56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
{% 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 %}
|
|
|
|
{% elif grains['os_family']=="RedHat" %}
|
|
|
|
include:
|
|
- apache
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:enabled', []) %}
|
|
find /etc/httpd/ -name '*.conf' -type f -exec sed -i -e 's/\(^#\)\(\s*LoadModule.{{ module }}_module\)/\2/g' {} \;:
|
|
cmd.run:
|
|
- unless: httpd -M 2> /dev/null | grep '\s{{ module }}_module'
|
|
- order: 225
|
|
- require:
|
|
- pkg: apache
|
|
- watch_in:
|
|
- module: apache-restart
|
|
{% endfor %}
|
|
|
|
{% for module in salt['pillar.get']('apache:modules:disabled', []) %}
|
|
find /etc/httpd/ -name '*.conf' -type f -exec sed -i -e 's/\(^\s*LoadModule.{{ module }}_module\)/#\1/g' {} \;:
|
|
cmd.run:
|
|
- onlyif: httpd -M 2> /dev/null | grep '\s{{ module }}_module'
|
|
- order: 225
|
|
- require:
|
|
- pkg: apache
|
|
- watch_in:
|
|
- module: apache-restart
|
|
{% endfor %}
|
|
|
|
{% endif %}
|