From 1e7439553ac15860af79b9374d8b65a6ff23a196 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Mon, 22 Oct 2018 12:49:21 +0200
Subject: [PATCH] Change module apt with multiple packages to remove deprecated
 syntax

---
 tasks/apache.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tasks/apache.yml b/tasks/apache.yml
index 2bd89f6..535efd7 100644
--- a/tasks/apache.yml
+++ b/tasks/apache.yml
@@ -10,10 +10,9 @@
 
 - name: "Apache | Install required packages."
   apt:
-    pkg='{{ item }}'
+    pkg='{{ apache_packages }}'
     state=present
     force=yes
-  with_items: '{{ apache_packages }}'
   notify: "Apache | Restart Apache"
 
 - name: "Apache | Enable some required modules"
-- 
GitLab