xoxys.sudo/templates/etc/sudoers.j2

21 lines
571 B
Plaintext
Raw Normal View History

2019-11-03 22:40:04 +01:00
#jinja2: lstrip_blocks: True
{{ ansible_managed | comment }}
{% if sudo_misc_settings %}
{% for item in sudo_misc_settings %}
Defaults {{ item }}
{% endfor %}
{% endif %}
{% if sudo_env_keep -%}
Defaults env_keep = "{{ sudo_env_keep|join(' ') }}"
{% endif %}
{% if sudo_secure_path -%}
Defaults secure_path = "{{ sudo_secure_path }}"
{% endif %}
2022-09-19 16:45:34 +02:00
Defaults logfile = {{ sudo_logfile }}
2019-11-03 22:40:04 +01:00
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)
#includedir /etc/sudoers.d