瀏覽代碼

make modules.sls compatible with RHEL/CentOS Apache 2.2

tags/v0.37.4
Brad Thurber 9 年之前
父節點
當前提交
0f0d5318e5
共有 1 個文件被更改,包括 29 次插入0 次删除
  1. +29
    -0
      apache/modules.sls

+ 29
- 0
apache/modules.sls 查看文件

@@ -26,3 +26,32 @@ a2dismod {{ module }}:
{% endfor %}

{% endif %}

{% if 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 %}

Loading…
取消
儲存