12 lines
272 B
Plaintext
12 lines
272 B
Plaintext
{% from "salt/map.jinja" import salt_daemons with context %}
|
|
|
|
{% for daemon in salt_daemons %}
|
|
/etc/salt/{{ daemon }}:
|
|
file.managed:
|
|
- source: salt://salt/files/{{ daemon }}.jinja
|
|
- template: jinja
|
|
- user: root
|
|
- group: root
|
|
- mode: 644
|
|
{% endfor %}
|