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.
|
- # -*- coding: utf-8 -*-
- # vim: ft=sls
-
- {%- set tplroot = tpldir.split('/')[0] %}
- {%- set sls_service_clean = tplroot ~ '.service.clean' %}
- {%- from tplroot ~ "/map.jinja" import apache with context %}
-
- include:
- - .modules.clean
- - {{ sls_service_clean }}
-
- apache-config-clean-file-absent:
- file.absent:
- - names:
- - {{ apache.config }}
- - {{ apache.logdir }}
- - {{ apache.vhostdir }}
- # apache.portsfile
- - /etc/apache2
- - /etc/httpd
- - {{ apache.confdir }}/server-status{{ apache.confext }}
- - require:
- - sls: {{ sls_service_clean }}
|