Selaa lähdekoodia

Added ability to enable SETENV in sudoers

Change-Id: Icee295720a5a2425390a1bcd588841897071938e
pull/100/head
Jakub Josef 7 vuotta sitten
vanhempi
commit
7a9d9b9cca
2 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. +1
    -0
      README.rst
  2. +1
    -1
      linux/files/sudoer-users

+ 1
- 0
README.rst Näytä tiedosto

salt-ops-2nd: salt-ops-2nd:
name: salt-ops name: salt-ops
nopasswd: false nopasswd: false
setenv: true # Enable sudo -E option
runas: runas:
- DBA - DBA
commands: commands:

+ 1
- 1
linux/files/sudoer-users Näytä tiedosto

# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN


{%- for user,spec in users.iteritems() %} {%- for user,spec in users.iteritems() %}
{{ spec.name|default(user) }} {{ spec.get('hosts', ['ALL'])|join(',') }}=({{ spec.get('runas', ['ALL'])|join(', ') }}) {% if spec.get('nopasswd', True) %}NOPASSWD: {% endif %}{{ spec.get('commands', ['ALL'])|join(', ') }}
{{ spec.name|default(user) }} {{ spec.get('hosts', ['ALL'])|join(',') }}=({{ spec.get('runas', ['ALL'])|join(', ') }}) {% if spec.get('nopasswd', True) %}NOPASSWD:{% endif %}{% if spec.get('setenv', False) %}SETENV:{% endif %} {{ spec.get('commands', ['ALL'])|join(', ') }}
{%- endfor %} {%- endfor %}



Loading…
Peruuta
Tallenna