mirror of
https://github.com/saltstack-formulas/template-formula.git
synced 2025-04-17 10:10:28 +00:00
16 lines
417 B
Text
16 lines
417 B
Text
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
{%- set sls_service_clean = tplroot ~ '.service.clean' %}
|
|
{%- from tplroot ~ "/map.jinja" import TEMPLATE with context %}
|
|
|
|
include:
|
|
- {{ sls_service_clean }}
|
|
|
|
TEMPLATE-config-clean-file-absent:
|
|
file.absent:
|
|
- name: {{ TEMPLATE.config }}
|
|
- require:
|
|
- sls: {{ sls_service_clean }}
|