apache-formula/apache/no_default_vhost.sls

16 lines
303 B
Plaintext
Raw Normal View History

{% if grains['os_family']=="Debian" %}
{% from "apache/map.jinja" import apache with context %}
include:
- apache
apache_no-default-vhost:
file.absent:
- name: {{ apache.vhostdir }}/000-default.conf
- require:
- pkg: apache
- watch_in:
- module: apache-reload
{% endif %}