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