From 2338aa64f4b02ccbe64a8d062fa6f6fe4198ccc6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 4 Dec 2020 04:09:23 -0500 Subject: [PATCH] Fix bad param for DHCPv4 config --- client-cli/cli_lib/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/cli_lib/network.py b/client-cli/cli_lib/network.py index 22dd9d11..5c7d21be 100644 --- a/client-cli/cli_lib/network.py +++ b/client-cli/cli_lib/network.py @@ -157,7 +157,7 @@ def net_modify(config, net, description, domain, name_servers, ip4_network, ip4_ if ip6_gateway is not None: params['ip6_gateway'] = ip6_gateway if dhcp4_flag is not None: - params['dhcp4_flag'] = dhcp4_flag + params['dhcp4'] = dhcp4_flag if dhcp4_start is not None: params['dhcp4_start'] = dhcp4_start if dhcp4_end is not None: