apache-formula/apache/mod_cgi.sls

23 lines
505 B
Plaintext
Raw Normal View History

2017-01-16 14:02:23 +01:00
{% from "apache/map.jinja" import apache with context %}
include:
- apache
{% if grains['os_family']=="FreeBSD" %}
{{ apache.modulesdir }}/040_mod_cgi.conf:
file.managed:
- source: salt://apache/files/{{ salt['grains.get']('os_family') }}/mod_cgi.conf.jinja
- mode: 644
- template: jinja
- require:
- pkg: apache
- watch_in:
- module: apache-restart
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
2017-01-16 14:02:23 +01:00
{% endif %}