exit: temporarily disable keepalived for dhcrelay

Broken on latest Cumulus.
This commit is contained in:
Timotej Lazar 2026-02-23 16:22:33 +01:00
parent 6760d2901e
commit 55da0e2f78

View file

@ -2,8 +2,9 @@
- set_fact:
dhcp_servers: '{{ prefixes | selectattr("custom_fields.dhcp_server") | groupby(attribute="custom_fields.dhcp_server.address") }}'
- name: Install keepalived
import_tasks: keepalived.yml
# TODO fix and reenable
#- name: Install keepalived
# import_tasks: keepalived.yml
- name: Configure DHCP relays
template:
@ -14,15 +15,15 @@
label: "{{ item.0 }}"
notify: restart keepalived
- name: Set up keepalived
template:
dest: /etc/keepalived/keepalived.conf
src: keepalived.conf.j2
mode: 0600
notify: restart keepalived
- name: Enable keepalived
service:
name: keepalived
enabled: yes
state: started
#- name: Set up keepalived
# template:
# dest: /etc/keepalived/keepalived.conf
# src: keepalived.conf.j2
# mode: 0600
# notify: restart keepalived
#
#- name: Enable keepalived
# service:
# name: keepalived
# enabled: yes
# state: started