From d67869aaf62790129304ff4aa65e444bb9397853 Mon Sep 17 00:00:00 2001 From: Rico Ullmann Date: Mon, 3 Jan 2022 13:47:07 +0100 Subject: [PATCH] postfix: update set formatting in items.py --- bundles/postfix/items.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/bundles/postfix/items.py b/bundles/postfix/items.py index 6277212..db856d0 100644 --- a/bundles/postfix/items.py +++ b/bundles/postfix/items.py @@ -1,6 +1,9 @@ svc_systemd = { 'postfix': { - 'needs': ['pkg_apt:postfix', 'file:/etc/postfix/main.cf'], + 'needs': [ + 'pkg_apt:postfix', + 'file:/etc/postfix/main.cf', + ], } } @@ -8,7 +11,9 @@ files = { '/etc/postfix/main.cf': { 'content_type': 'mako', 'needs': ['pkg_apt:postfix'], - 'triggers': ['svc_systemd:postfix:restart'], + 'triggers': [ + 'svc_systemd:postfix:restart', + ], }, } @@ -16,6 +21,8 @@ directories = { '/etc/postfix': { 'owner': 'root', 'mode': '1755', - 'needs': ['pkg_apt:postfix'], + 'needs': [ + 'pkg_apt:postfix', + ], }, }