add haproxy repo, custom config files & readme

This commit is contained in:
Ludovic Cartier
2025-09-23 14:59:37 +02:00
parent 58ef95e654
commit 141ec62e2c
8 changed files with 123 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
---
- name: haproxy | add Debian backports repository
apt_repository:
repo: deb http://deb.debian.org/debian {{ ansible_distribution_release }}-backports main
state: present
filename: "{{ ansible_distribution_release }}-backports"
update_cache: yes
- name: haproxy | installation
apt:
name: haproxy
state: present
default_release: "{{ ansible_distribution_release }}-backports"