mirror of
https://github.com/saltstack-formulas/sudoers-formula.git
synced 2024-11-28 05:07:57 +01:00
ae1b5dab1b
Sorry Imissed this update
23 lines
669 B
Plaintext
23 lines
669 B
Plaintext
{% from "sudoers/map.jinja" import sudoers with context %}
|
|
|
|
include:
|
|
- sudoers
|
|
|
|
{% do sudoers.update(pillar.get('sudoers', {})) %}
|
|
{% set included_files = sudoers.get('included_files', {}) %}
|
|
{% for included_file,spec in included_files.items() -%}
|
|
{{ included_file }}:
|
|
file.managed:
|
|
- user: root
|
|
- group: {{ sudoers.get('group', 'root') }}
|
|
- mode: 440
|
|
- template: jinja
|
|
- source: salt://sudoers/files/sudoers
|
|
- check_cmd: {{ sudoers.get('execprefix', '/usr/sbin') }}/visudo -c -f
|
|
- context:
|
|
included: True
|
|
sudoers: {{ spec|json }}
|
|
- require:
|
|
- file: {{ sudoers.get('configpath', '/etc') }}/sudoers
|
|
{% endfor %}
|