diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/dhcp-server/kea-ctrl-agent.conf.j2 | 4 | ||||
-rw-r--r-- | data/templates/dhcp-server/kea-dhcp4.conf.j2 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/dhcp-server/kea-ctrl-agent.conf.j2 b/data/templates/dhcp-server/kea-ctrl-agent.conf.j2 index 74c63a7a0..b37cf4798 100644 --- a/data/templates/dhcp-server/kea-ctrl-agent.conf.j2 +++ b/data/templates/dhcp-server/kea-ctrl-agent.conf.j2 @@ -1,7 +1,7 @@ { "Control-agent": { -{% if failover is vyos_defined %} - "http-host": "{{ failover.source_address }}", +{% if high_availability is vyos_defined %} + "http-host": "{{ high_availability.source_address }}", "http-port": 647, "control-sockets": { "dhcp4": { diff --git a/data/templates/dhcp-server/kea-dhcp4.conf.j2 b/data/templates/dhcp-server/kea-dhcp4.conf.j2 index 629fa952a..bf37b94f6 100644 --- a/data/templates/dhcp-server/kea-dhcp4.conf.j2 +++ b/data/templates/dhcp-server/kea-dhcp4.conf.j2 @@ -51,11 +51,11 @@ } ], "hooks-libraries": [ -{% if failover is vyos_defined %} +{% if high_availability is vyos_defined %} { "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_ha.so", "parameters": { - "high-availability": [{{ failover | kea_failover_json }}] + "high-availability": [{{ high_availability | kea_high_availability_json }}] } }, {% endif %} |