apache-formula/apache/mod_actions.sls

16 lines
257 B
Plaintext
Raw Normal View History

{% if grains['os_family']=="Debian" %}
2013-07-29 23:29:41 +02:00
include:
- apache
2013-07-29 23:29:41 +02:00
a2enmod actions:
2013-07-29 23:29:41 +02:00
cmd.run:
- unless: ls /etc/apache2/mods-enabled/actions.load
- order: 255
- require:
- pkg: apache
2013-07-29 23:29:41 +02:00
- watch_in:
- module: apache-restart
2013-07-29 23:29:41 +02:00
{% endif %}