1
0
Fork 0
formula-sudoers/sudoers/included.sls

22 lines
585 B
Plaintext
Raw Normal View History

2015-01-01 17:14:56 -05:00
{% from "sudoers/map.jinja" import sudoers with context %}
2014-10-02 03:29:40 -04:00
include:
- sudoers
{% set sudoers = pillar.get('sudoers', {}) %}
{% set included_files = sudoers.get('included_files', {}) %}
{% for included_file,spec in included_files.items() -%}
{{ included_file }}:
file.managed:
- user: root
2015-01-01 17:14:56 -05:00
- group: {{ sudoers.get('group', 'root') }}
- mode: 440
- template: jinja
- source: salt://sudoers/files/sudoers
- context:
included: True
sudoers: {{ spec }}
- require:
2015-01-01 17:14:56 -05:00
- file: {{ sudoers.get('config-path', '/etc') }}/sudoers
{% endfor %}