feat: add keepalived (unused)

This commit is contained in:
2026-06-29 00:21:40 +01:00
parent 82b3e5f9dd
commit 0d079ee672
3 changed files with 35 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
- name: Install keepalived
ansible.builtin.apt:
pkg:
- keepalived
state: present
- name: Install keepalived config
ansible.builtin.template:
src: keepalived.conf.j2
dest: /etc/keepalived/keepalived.conf
mode: "0644"
notify: Restart keepalived