12 lines
383 B
Plaintext
12 lines
383 B
Plaintext
|
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
|
||
|
{%- from "rsync/map.jinja" import rsync with context %}
|
||
|
{% for key, value in rsync.config.global.items() %}
|
||
|
{{ key }} = {{ value }}
|
||
|
{%- endfor %}
|
||
|
|
||
|
{% for section in rsync.config.sections -%}
|
||
|
[{{ section.name }}]
|
||
|
{%- for key, value in section.settings.items() %}
|
||
|
{{ key }} = {{ value }}
|
||
|
{%- endfor %}
|
||
|
{%- endfor %}
|