22 lines
500 B
Plaintext
22 lines
500 B
Plaintext
# -*- 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 grafana with context %}
|
|
|
|
include:
|
|
- {{ sls_config_clean }}
|
|
|
|
{%- if grafana.pkg.use_upstream_repo %}
|
|
include:
|
|
- .repo.clean
|
|
{%- endif %}
|
|
|
|
grafana-package-clean-pkg-removed:
|
|
pkg.removed:
|
|
- name: {{ grafana.pkg.name }}
|
|
# require:
|
|
# sls: {{ sls_config_clean }}
|