fix typo in the sudoers file that was causing the wrong data to get populated under new fields
This commit is contained in:
parent
ac278d226c
commit
595f90c5d4
1 changed files with 3 additions and 3 deletions
|
@ -45,10 +45,10 @@ Defaults:{{ user }} {{ spec }}
|
|||
Defaults@{{ host }} {{ spec }}
|
||||
{%- endfor %}
|
||||
{%- for command,spec in command_list_defaults.items() %}
|
||||
Defaults!{{ user }} {{ spec }}
|
||||
Defaults!{{ command }} {{ spec }}
|
||||
{%- endfor %}
|
||||
{%- for user,spec in runas_list_defaults.items() %}
|
||||
Defaults>{{ user }} {{ spec }}
|
||||
{%- for runas,spec in runas_list_defaults.items() %}
|
||||
Defaults>{{ runas }} {{ spec }}
|
||||
{%- endfor %}
|
||||
|
||||
# Host alias specification
|
||||
|
|
Loading…
Reference in a new issue