From 187d3ce4fcf5424b705743faa15019980c6d50ea Mon Sep 17 00:00:00 2001 From: David Mehren <git@herrmehren.de> Date: Sun, 19 Dec 2021 12:04:28 +0100 Subject: [PATCH] Update haproxy to 2.5 --- tasks/install.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 0dfe005..9dd021b 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,10 +1,15 @@ --- -- name: Add HAProxy 2.4 PPA +- name: Add HAProxy 2.5 PPA apt_repository: - repo: 'ppa:vbernat/haproxy-2.4' + repo: 'ppa:vbernat/haproxy-2.5' state: present +- name: Remove HAProxy 2.4 PPA + apt_repository: + repo: 'ppa:vbernat/haproxy-2.4' + state: absent + - name: Remove HAProxy 2.3 PPA apt_repository: repo: 'ppa:vbernat/haproxy-2.3' @@ -32,7 +37,7 @@ - name: Install HAProxy apt: - name: "haproxy=2.4.*" + name: "haproxy=2.5.*" state: present update_cache: yes -- GitLab