ac8921f11a
* Automated using https://github.com/myii/ssf-formula/pull/281
19 lines
625 B
Text
19 lines
625 B
Text
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
---
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
{%- from tplroot ~ "/map.jinja" import sudoers as mapdata with context %}
|
|
|
|
{%- do salt['log.debug']('### MAP.JINJA DUMP ###\n' ~ mapdata | yaml(False)) %}
|
|
|
|
{%- set output_dir = '/temp' if grains.os_family == 'Windows' else '/tmp' %}
|
|
{%- set output_file = output_dir ~ '/salt_mapdata_dump.yaml' %}
|
|
|
|
{{ tplroot }}-mapdata-dump:
|
|
file.managed:
|
|
- name: {{ output_file }}
|
|
- source: salt://{{ tplroot }}/_mapdata/_mapdata.jinja
|
|
- template: jinja
|
|
- context:
|
|
map: {{ mapdata | yaml }}
|