apache-formula/apache/init.sls

11 lines
166 B
Plaintext
Raw Normal View History

2013-07-27 20:29:52 +02:00
apache2:
2013-07-27 21:59:10 +02:00
{% if grains['os_family'] == 'Debian' %}
pkg:
2013-07-27 20:29:52 +02:00
- installed
2013-07-27 21:59:10 +02:00
{% endif %}
service:
2013-07-27 20:29:52 +02:00
- running
2013-07-27 21:59:10 +02:00
- endable: True
2013-07-27 20:29:52 +02:00
- require:
2013-07-27 21:59:10 +02:00
- pkg: apache2