nsd-formula/nsd/config/file.sls

29 lines
800 B
Plaintext
Raw Normal View History

2021-04-01 23:00:17 +02:00
# -*- 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 mapdata as nsd with context %}
2021-04-01 23:00:17 +02:00
{%- from tplroot ~ "/libtofs.jinja" import files_switch with context %}
include:
- {{ sls_package_install }}
nsd-config-file-file-managed:
2021-04-01 23:00:17 +02:00
file.managed:
- name: {{ nsd.config }}
2021-04-01 23:00:17 +02:00
- source: {{ files_switch(['example.tmpl'],
lookup='nsd-config-file-file-managed'
2021-04-01 23:00:17 +02:00
)
}}
- mode: 644
- user: root
- group: {{ nsd.rootgroup }}
2021-04-01 23:00:17 +02:00
- makedirs: True
- template: jinja
- require:
- sls: {{ sls_package_install }}
- context:
nsd: {{ nsd | json }}