Skip to content
Snippets Groups Projects
Commit 76d86fb6 authored by Felix Schäfer's avatar Felix Schäfer 👷
Browse files

Remove Ubuntu support, Add debian 12 support

parent 4a879cee
No related branches found
No related tags found
No related merge requests found
Pipeline #232964 failed
......@@ -5,7 +5,7 @@ galaxy_info:
license: Apache-2.0
min_ansible_version: "2.9"
platforms:
- name: Ubuntu
- name: Debian
versions:
- all
- 12
dependencies: []
---
- name: Add HAProxy apt key
ansible.builtin.apt_key:
url: https://haproxy.debian.net/bernat.debian.org.gpg
state: present
- name: Add HAProxy 2.9 PPA
- name: Add HAProxy apt repository
ansible.builtin.apt_repository:
repo: 'ppa:vbernat/haproxy-2.9'
repo: 'deb [signed-by=AEF2348766F371C689A7360095A42FE8353525F9] http://haproxy.debian.net bookworm-backports-2.9 main'
filename: haproxy-2.9
state: present
- name: Remove old HAProxy PPAs
- name: Remove old HAProxy apt repositories
ansible.builtin.apt_repository:
repo: "ppa:vbernat/haproxy-{{ item }}"
repo: "deb [signed-by=AEF2348766F371C689A7360095A42FE8353525F9] http://haproxy.debian.net bookworm-backports-{{ item }} main"
filename: haproxy-{{ item }}
state: absent
loop:
- "2.8"
- "2.7"
- "2.6"
- "2.5"
- "2.4"
- "2.3"
- "2.2"
- "2.1"
- "2.0"
- "1.8"
- name: Install HAProxy
ansible.builtin.apt:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment