From effe20d323ba77f718802cb54caceb979e85f6bb Mon Sep 17 00:00:00 2001 From: mwiegand Date: Tue, 19 Oct 2021 00:25:24 +0200 Subject: [PATCH] postfix setfacl --- bundles/postfix/items.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/bundles/postfix/items.py b/bundles/postfix/items.py index cede88a..607e6e3 100644 --- a/bundles/postfix/items.py +++ b/bundles/postfix/items.py @@ -77,3 +77,19 @@ actions['test_virtual_alias_maps'] = { 'action:mailserver_update_test_pw', ], } + +if node.has_bundle('telegraf'): + actions['postfix_setfacl_telegraf'] = { + 'command': 'setfacl -Rm g:telegraf:rX /var/spool/postfix', + 'unless': 'getfacl -a /var/spool/postfix | grep -q "^group:telegraf:r-x$"', + 'needs': [ + 'svc_systemd:postfix', + ], + } + actions['postfix_setfacl_default_telegraf'] = { + 'command': 'setfacl -dm g:telegraf:rX /var/spool/postfix', + 'unless': 'getfacl -d /var/spool/postfix | grep -q "^group:telegraf:r-x$"', + 'needs': [ + 'svc_systemd:postfix', + ], + }