apache-formula/apache/init.sls

20 lines
359 B
Plaintext
Raw Normal View History

{% from "apache/map.jinja" import apache with context %}
2013-08-13 23:03:16 +02:00
apache:
pkg:
- installed
2013-08-23 05:14:28 +02:00
- name: {{ apache.server }}
2013-08-13 23:03:16 +02:00
service:
- running
2013-08-23 05:14:28 +02:00
- name: {{ apache.service }}
2013-08-13 23:03:16 +02:00
- enable: True
apache-reload:
module.wait:
- name: service.reload {{ apache.service }}
apache-restart:
module.wait:
- name: service.restart {{ apache.service }}