mirror of
https://github.com/saltstack-formulas/template-formula.git
synced 2025-04-17 10:10:28 +00:00
28 lines
824 B
Text
28 lines
824 B
Text
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
{%- set sls_package_install = tplroot ~ '.package.install' %}
|
|
{%- from tplroot ~ "/map.jinja" import TEMPLATE with context %}
|
|
{%- from tplroot ~ "/libtofs.jinja" import files_switch with context %}
|
|
|
|
include:
|
|
- {{ sls_package_install }}
|
|
|
|
TEMPLATE-config-file-file-managed:
|
|
file.managed:
|
|
- name: {{ TEMPLATE.config }}
|
|
- source: {{ files_switch(['example.tmpl'],
|
|
lookup='TEMPLATE-config-file-file-managed'
|
|
)
|
|
}}
|
|
- mode: 644
|
|
- user: root
|
|
- group: {{ TEMPLATE.rootgroup }}
|
|
- makedirs: True
|
|
- template: jinja
|
|
- require:
|
|
- sls: {{ sls_package_install }}
|
|
- context:
|
|
TEMPLATE: {{ TEMPLATE | json }}
|