瀏覽代碼

add suse support to apache_modules

tags/v0.37.4
Niels Abspoel 7 年之前
父節點
當前提交
e5313af81a
共有 1 個文件被更改,包括 27 次插入0 次删除
  1. +27
    -0
      apache/modules.sls

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

@@ -52,4 +52,31 @@ find /etc/httpd/ -name '*.conf' -type f -exec sed -i -e 's/\(^\s*LoadModule.{{ m
- module: apache-restart
{% endfor %}

{% elif grains['os_family']=="Suse" %}

include:
- apache
{% for module in salt['pillar.get']('apache:modules:enabled', []) %}
a2enmod {{ module }}:
cmd.run:
- unless: egrep "^APACHE_MODULES=" /etc/sysconfig/apache2 | grep {{ module }}
- order: 225
- require:
- pkg: apache
- watch_in:
- module: apache-restart
{% endfor %}

{% for module in salt['pillar.get']('apache:modules:disabled', []) %}
a2dismod -f {{ module }}:
cmd.run:
- onlyif: egrep "^APACHE_MODULES=" /etc/sysconfig/apache2 | grep {{ module }}
- order: 225
- require:
- pkg: apache
- watch_in:
- module: apache-restart
{% endfor %}

{% endif %}

Loading…
取消
儲存