sudo: one command per line
This commit is contained in:
parent
e9771f1b9f
commit
085eb2b2d3
2 changed files with 9 additions and 1 deletions
3
bundles/sudo/files/sudoer
Normal file
3
bundles/sudo/files/sudoer
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
% for command in sorted(commands):
|
||||||
|
${user} ALL=(ALL) NOPASSWD: ${command}
|
||||||
|
% endfor
|
|
@ -6,6 +6,11 @@ directories = {
|
||||||
|
|
||||||
for user, commands in node.metadata.get('sudoers').items():
|
for user, commands in node.metadata.get('sudoers').items():
|
||||||
files[f'/etc/sudoers.d/{user}'] = {
|
files[f'/etc/sudoers.d/{user}'] = {
|
||||||
'content': f"{user} ALL=(ALL) NOPASSWD: {', '.join(sorted(commands))}",
|
'content_type': 'mako',
|
||||||
|
'source': 'sudoer',
|
||||||
|
'context': {
|
||||||
|
'user': user,
|
||||||
|
'commands': commands,
|
||||||
|
},
|
||||||
'mode': '500',
|
'mode': '500',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue