24e66ca8bf
Dashes causes some weird issues while rendering jinja templates.
18 lines
472 B
Text
18 lines
472 B
Text
{% from "sudoers/map.jinja" import sudoers with context %}
|
|
|
|
sudo:
|
|
pkg.installed:
|
|
- name: {{ sudoers.pkg }}
|
|
|
|
{{ sudoers.get('configpath', '/etc') }}/sudoers:
|
|
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: False
|
|
- require:
|
|
- pkg: sudo
|