Merge pull request #47 from bradthurber/modules.sls-redhat
make modules.sls compatible with RHEL/CentOS Apache 2.2
This commit is contained in:
commit
231000fd4b
@ -25,4 +25,31 @@ a2dismod {{ module }}:
|
|||||||
- module: apache-restart
|
- module: apache-restart
|
||||||
{% endfor %}
|
{% 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/\(^#\)\(LoadModule.{{ module }}_module\)/\2/g' {} \;:
|
||||||
|
cmd.run:
|
||||||
|
- unless: httpd -M 2> /dev/null | grep {{ 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/\(^LoadModule.{{ module }}_module\)/#\1/g' {} \;:
|
||||||
|
cmd.run:
|
||||||
|
- onlyif: httpd -M 2> /dev/null | grep {{ module }}_module
|
||||||
|
- order: 225
|
||||||
|
- require:
|
||||||
|
- pkg: apache
|
||||||
|
- watch_in:
|
||||||
|
- module: apache-restart
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user