2020-08-24 11:26:54 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=sls
|
|
|
|
|
|
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
|
|
{%- set sls_config_file = tplroot ~ '.config.file' %}
|
|
|
|
{%- from tplroot ~ "/map.jinja" import sudoers with context %}
|
2013-08-20 17:32:58 -04:00
|
|
|
|
|
|
|
sudo:
|
|
|
|
pkg.installed:
|
2015-01-01 17:19:47 -05:00
|
|
|
- name: {{ sudoers.pkg }}
|
2013-08-20 17:32:58 -04:00
|
|
|
|
2020-08-24 11:26:54 -04:00
|
|
|
{% if sudoers.manage_main_config %}
|
2018-08-22 06:14:02 -04:00
|
|
|
|
2020-08-24 11:26:54 -04:00
|
|
|
{{ sudoers.configpath }}/sudoers:
|
2013-08-20 17:32:58 -04:00
|
|
|
file.managed:
|
|
|
|
- user: root
|
2020-08-24 11:26:54 -04:00
|
|
|
- group: {{ sudoers.group }}
|
2013-08-20 17:32:58 -04:00
|
|
|
- mode: 440
|
|
|
|
- template: jinja
|
|
|
|
- source: salt://sudoers/files/sudoers
|
2020-08-24 11:26:54 -04:00
|
|
|
- check_cmd: {{ sudoers.execprefix }}/visudo -c -f
|
2014-02-09 12:32:22 -05:00
|
|
|
- context:
|
|
|
|
included: False
|
2013-08-20 17:32:58 -04:00
|
|
|
- require:
|
|
|
|
- pkg: sudo
|
2018-08-22 06:14:02 -04:00
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
2020-08-24 11:26:54 -04:00
|
|
|
{{ sudoers.configpath }}/sudoers:
|
2018-08-22 06:14:02 -04:00
|
|
|
test.show_notification:
|
|
|
|
- name: Skipping management of main sudoers file
|
|
|
|
- text: Pillar manage_main_config is False
|
|
|
|
|
|
|
|
{% endif %}
|