Skip to content
Snippets Groups Projects
Verified Commit 737c246e authored by David Mehren's avatar David Mehren
Browse files

Update to HAProxy 2.8

parent f6d715c7
No related branches found
No related tags found
No related merge requests found
Pipeline #191115 failed
--- ---
- name: Add HAProxy 2.7 PPA - name: Add HAProxy 2.8 PPA
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.7' repo: 'ppa:vbernat/haproxy-2.8'
state: present state: present
- name: Remove HAProxy 2.6 PPA - name: Remove old HAProxy PPAs
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.6' repo: "ppa:vbernat/haproxy-{{ item }}"
state: absent
- name: Remove HAProxy 2.5 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.5'
state: absent
- name: Remove HAProxy 2.4 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.4'
state: absent
- name: Remove HAProxy 2.3 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.3'
state: absent
- name: Remove HAProxy 2.2 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.2'
state: absent
- name: Remove HAProxy 2.1 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.1'
state: absent
- name: Remove HAProxy 2.0 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.0'
state: absent
- name: Remove HAProxy 1.8 PPA
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-1.8'
state: absent state: absent
loop:
- "2.7"
- "2.6"
- "2.5"
- "2.4"
- "2.3"
- "2.2"
- "2.1"
- "2.0"
- "1.8"
- name: Install HAProxy - name: Install HAProxy
ansible.builtin.apt: ansible.builtin.apt:
name: "haproxy=2.7.*" name: "haproxy=2.8.*"
state: present state: present
update_cache: true update_cache: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment