sudo: one command per line

This commit is contained in:
mwiegand 2022-03-26 11:59:10 +01:00
parent e9771f1b9f
commit 085eb2b2d3
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,3 @@
% for command in sorted(commands):
${user} ALL=(ALL) NOPASSWD: ${command}
% endfor

View file

@ -6,6 +6,11 @@ directories = {
for user, commands in node.metadata.get('sudoers').items():
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',
}