2021-03-31 10:10:43 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=sls
|
|
|
|
|
|
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
|
|
{%- set sls_service_clean = tplroot ~ '.service.clean' %}
|
2021-03-31 10:10:44 +02:00
|
|
|
{%- from tplroot ~ "/map.jinja" import mapdata as unbound with context %}
|
2021-03-31 10:10:43 +02:00
|
|
|
|
|
|
|
include:
|
|
|
|
- {{ sls_service_clean }}
|
|
|
|
|
2021-03-31 10:10:44 +02:00
|
|
|
unbound-config-clean-file-absent:
|
2021-03-31 10:10:43 +02:00
|
|
|
file.absent:
|
2021-03-31 10:10:44 +02:00
|
|
|
- name: {{ unbound.config }}
|
2021-03-31 10:10:43 +02:00
|
|
|
- require:
|
|
|
|
- sls: {{ sls_service_clean }}
|