53b995a680
- Added more modules and configuration options - Renamed sls files to reflect what they do. - added mpm options for Debian
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
{% if grains['os_family']=="Debian" %}
|
|
|
|
include:
|
|
- apache
|
|
|
|
a2enmod actions:
|
|
cmd.run:
|
|
- unless: ls /etc/apache2/mods-enabled/actions.load
|
|
- order: 255
|
|
- require:
|
|
- pkg: apache
|
|
- watch_in:
|
|
- module: apache-restart
|
|
|
|
{% endif %}
|