Skip to content
Snippets Groups Projects
Unverified Commit 00b437aa authored by Niels Abspoel's avatar Niels Abspoel Committed by GitHub
Browse files

Merge pull request #232 from ze42/vhosts_cleanup

vhosts/cleanup: clean non-salted sites
parents 760cadeb fdaa62d7
Branches
No related tags found
No related merge requests found
{% from "apache/map.jinja" import apache with context %}
include:
- apache
{% if grains.os_family == 'Debian' %}
{% set dirpath = '/etc/apache2/sites-enabled' %}
{# Add . and .. to make it easier to not clean those #}
{% set valid_sites = ['.', '..', ] %}
{# Take sites from apache.vhosts.standard #}
{% for id, site in salt['pillar.get']('apache:sites', {}).items() %}
{% do valid_sites.append('{}{}'.format(id, apache.confext)) %}
{% endfor %}
{# Take sites from apache.register_site #}
{% for id, site in salt['pillar.get']('apache:register-site', {}) %}
{% do valid_sites.append('{}{}'.format(site.name, apache.confext)) %}
{% endfor %}
{% for filename in salt['file.readdir']('/etc/apache2/sites-enabled/') %}
{% if filename not in valid_sites %}
a2dissite {{ filename }}:
cmd.run:
- onlyif: "test -L {{ dirpath}}/{{ filename }} || test -f {{ dirpath}}/{{ filename }}"
- watch_in:
- module: apache-reload
{% endif %}
{% endfor %}
{% endif %}{# Debian #}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment