From fc67424700a9963f1fb9a1f5d32b64ce05fa9182 Mon Sep 17 00:00:00 2001 From: David Mehren <git@herrmehren.de> Date: Sun, 26 Jun 2022 12:04:09 +0200 Subject: [PATCH] Update haproxy to 2.6 --- tasks/install.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 9dd021b..eb4c831 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,10 +1,15 @@ --- -- name: Add HAProxy 2.5 PPA +- name: Add HAProxy 2.6 PPA apt_repository: - repo: 'ppa:vbernat/haproxy-2.5' + repo: 'ppa:vbernat/haproxy-2.6' state: present +- name: Remove HAProxy 2.5 PPA + apt_repository: + repo: 'ppa:vbernat/haproxy-2.5' + state: absent + - name: Remove HAProxy 2.4 PPA apt_repository: repo: 'ppa:vbernat/haproxy-2.4' @@ -37,7 +42,7 @@ - name: Install HAProxy apt: - name: "haproxy=2.5.*" + name: "haproxy=2.6.*" state: present update_cache: yes -- GitLab