From 4a879ceeceb86f349c29b7e62eef47b56980eca4 Mon Sep 17 00:00:00 2001 From: David Mehren <git@herrmehren.de> Date: Sun, 14 Jan 2024 10:32:22 +0100 Subject: [PATCH] Update to HAProxy 2.9 --- tasks/install.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index a9027b8..1ef4aeb 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,8 +1,8 @@ --- -- name: Add HAProxy 2.8 PPA +- name: Add HAProxy 2.9 PPA ansible.builtin.apt_repository: - repo: 'ppa:vbernat/haproxy-2.8' + repo: 'ppa:vbernat/haproxy-2.9' state: present - name: Remove old HAProxy PPAs @@ -10,6 +10,7 @@ repo: "ppa:vbernat/haproxy-{{ item }}" state: absent loop: + - "2.8" - "2.7" - "2.6" - "2.5" @@ -22,7 +23,7 @@ - name: Install HAProxy ansible.builtin.apt: - name: "haproxy=2.8.*" + name: "haproxy=2.9.*" state: present update_cache: true -- GitLab