apache-formula/apache/init.sls
2014-09-25 11:48:36 -05:00

21 lines
494 B
Plaintext

{% from "apache/map.jinja" import apache with context %}
apache:
pkg.installed:
- name: {{ apache.server }}
service.running:
- name: {{ apache.service }}
- enable: True
# The following states are inert by default and can be used by other states to
# trigger a restart or reload as needed.
apache-reload:
module.wait:
- name: service.reload
- m_name: {{ apache.service }}
apache-restart:
module.wait:
- name: service.restart
- m_name: {{ apache.service }}