From 057cb0bf89fc160c4cef43bb82ace794c383cbbb Mon Sep 17 00:00:00 2001
From: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
Date: Mon, 16 Sep 2019 22:28:59 +0200
Subject: [PATCH] always use bionic url

---
 tasks/install.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tasks/install.yml b/tasks/install.yml
index 1bd22c3..7ced71b 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -1,15 +1,15 @@
 ---
+- name: install apt key
+  apt_key:
+    state: present
+    keyserver: 'https://keyserver.ubuntu.com'
+    id: 'CFFB779AADC995E4F350A060505D97A41C61B9CD'
 
 - name: Add HAProxy 2.0 PPA
   apt_repository:
-    repo: 'ppa:vbernat/haproxy-2.0'
+    repo: "deb http://ppa.launchpad.net/vbernat/haproxy-2.0/ubuntu bionic main"
     state: present
 
-- name: Remove HAProxy 1.8 PPA
-  apt_repository:
-    repo: 'ppa:vbernat/haproxy-1.8'
-    state: absent
-
 - name: Install HAProxy
   apt:
     name: "haproxy=2.0.*"
-- 
GitLab