apache-formula/apache/mod_suexec.sls

19 lines
408 B
Plaintext
Raw Normal View History

2017-01-08 12:13:38 +01:00
{% from "apache/map.jinja" import apache with context %}
include:
- apache
{% if grains['os_family']=="FreeBSD" %}
{{ apache.modulesdir }}/040_mod_suexec.conf:
file.managed:
- source: salt://apache/files/{{ salt['grains.get']('os_family') }}/mod_suexec.conf.jinja
- mode: 644
- template: jinja
- require:
- pkg: apache
- watch_in:
- module: apache-restart
{% endif %}