apache-formula/apache/rewrite.sls

17 lines
262 B
Plaintext
Raw Normal View History

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