20 lines
621 B
Plaintext
20 lines
621 B
Plaintext
|
# -*- coding: utf-8 -*-
|
||
|
# vim: ft=sls
|
||
|
---
|
||
|
{#- Get the `tplroot` from `tpldir` #}
|
||
|
{%- set tplroot = tpldir.split('/')[0] %}
|
||
|
{%- from tplroot ~ "/map.jinja" import php 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 }}
|