16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
|
{% 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 %}
|