From e2bf81ad05def903bac2182617bdfd0a50704361 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Tue, 24 Apr 2018 12:15:29 +0200
Subject: [PATCH] Update deprecated keyword

---
 tasks/install.yml | 2 +-
 tasks/main.yml    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tasks/install.yml b/tasks/install.yml
index 269922b..8249210 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -4,7 +4,7 @@
 - name: "MySQL | Install required packages"
   apt:
     pkg='mysql-server'
-    state='installed'
+    state='present'
 
 # The following should also work for the new mechanism of MySQL 5.7 where
 # the auth plugin for root@localhost is initially set to socket mode.
diff --git a/tasks/main.yml b/tasks/main.yml
index b9777ae..40b3e8e 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -19,7 +19,7 @@
   - name: "MySQL | Update required packages"
     apt:
       pkg='{{ item }}'
-      state=installed
+      state=present
     with_items:
       - 'mysql-server'
       - 'mytop'
-- 
GitLab