Initial commit

This commit is contained in:
ansible
2026-08-18 18:12:01 +02:00
committed by pulsar
commit 1a63c1e44f
8 changed files with 411 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
---
# tasks file for haproxy
- name: Install acme.sh
ansible.builtin.apt:
name: acme.sh
become: true
- name: Execute acme.sh commands
ansible.builtin.command:
argv: "{{ item.command }}"
creates: "{{ item.must_present | default(omit) }}"
removes: "{{ item.must_absent | default(omit) }}"
become: true
loop: "{{ haproxy_acmesh }}"
loop_control:
label: "{{ item.command | join(' ') }}"
environment: "{{ item.env }}"