From aa8b9f584a22e4c0cef527ac9611ddc8c14766ca Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 5 Jun 2021 15:30:29 +0200 Subject: [PATCH] refactor: use generic ansible modules service and package --- tasks/post_tasks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/post_tasks.yml b/tasks/post_tasks.yml index 663d61e..d8bc09e 100644 --- a/tasks/post_tasks.yml +++ b/tasks/post_tasks.yml @@ -1,6 +1,6 @@ --- - name: Ensure postfix service is up and running - systemd: + service: name: "postfix" state: started daemon_reload: yes