Saltstack Official Apache Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% 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 }}
|