23 lines
370 B
Plaintext
Raw Normal View History

{% if grains['os_family']=="Debian" %}
2013-07-29 21:29:41 +00:00
include:
- apache
2013-07-29 21:29:41 +00:00
mod-fcgid:
pkg.installed:
- name: libapache2-mod-fcgid
- order: 180
- require:
2013-07-29 21:30:29 +00:00
- pkg: apache
2013-07-29 21:29:41 +00:00
a2enmod fcgid:
cmd.run:
- order: 225
- unless: ls /etc/apache2/mods-enabled/fcgid.load
- require:
2013-07-29 21:29:41 +00:00
- pkg: mod-fcgid
- watch_in:
- module: apache-restart
2013-07-29 21:29:41 +00:00
{% endif %}