bundlewrap/bundles/oidentd/files/oidentd.conf
Franzi 28dd9694af
All checks were successful
bundlewrap/pipeline/head This commit looks good
add bundle:oidentd
2021-03-21 17:40:58 +01:00

30 lines
460 B
Plaintext

default {
default {
deny spoof
deny spoof_all
deny spoof_privport
deny random
deny random_numeric
deny numeric
deny hide
deny forward
}
}
user root {
default {
force reply "nobody"
}
}
% for user, allows in node.metadata.get('oidentd/allows', {}).items():
user ${user} {
default {
% for allow in sorted(allows):
allow ${allow}
% endfor
}
}
% endfor