summaryrefslogtreecommitdiff
path: root/src/conf_mode/load-balancing-haproxy.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2023-08-05 22:59:11 -0500
committerJohn Estabrook <jestabro@vyos.io>2023-08-07 00:48:31 -0500
commit4e356a6f5e5fca46169789f9a69f90c353e37400 (patch)
treef8e4169ca742cd19f6514bbf76dc646b5de0aa98 /src/conf_mode/load-balancing-haproxy.py
parent43e96522f8c58d6f9861d2662b6debf3b52540a3 (diff)
downloadvyos-1x-4e356a6f5e5fca46169789f9a69f90c353e37400.tar.gz
vyos-1x-4e356a6f5e5fca46169789f9a69f90c353e37400.zip
T5319: remove workarounds for defaults in load-balancing-haproxy.py
Diffstat (limited to 'src/conf_mode/load-balancing-haproxy.py')
-rwxr-xr-xsrc/conf_mode/load-balancing-haproxy.py14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/conf_mode/load-balancing-haproxy.py b/src/conf_mode/load-balancing-haproxy.py
index 2fb0edf8e..8fe429653 100755
--- a/src/conf_mode/load-balancing-haproxy.py
+++ b/src/conf_mode/load-balancing-haproxy.py
@@ -20,14 +20,12 @@ from sys import exit
from shutil import rmtree
from vyos.config import Config
-from vyos.configdict import dict_merge
from vyos.utils.process import call
from vyos.utils.network import check_port_availability
from vyos.utils.network import is_listen_port_bind_service
from vyos.pki import wrap_certificate
from vyos.pki import wrap_private_key
from vyos.template import render
-from vyos.xml import defaults
from vyos import ConfigError
from vyos import airbag
airbag.enable()
@@ -54,18 +52,8 @@ def get_config(config=None):
lb['pki'] = conf.get_config_dict(['pki'], key_mangling=('-', '_'),
get_first_key=True, no_tag_node_value_mangle=True)
- # We have gathered the dict representation of the CLI, but there are default
- # options which we need to update into the dictionary retrived.
- default_values = defaults(base)
- if 'backend' in default_values:
- del default_values['backend']
if lb:
- lb = dict_merge(default_values, lb)
-
- if 'backend' in lb:
- for backend in lb['backend']:
- default_balues_backend = defaults(base + ['backend'])
- lb['backend'][backend] = dict_merge(default_balues_backend, lb['backend'][backend])
+ lb = conf.merge_defaults(lb, recursive=True)
return lb