From 641b03199ed06c2630fa24f9c74b5cd59063cf18 Mon Sep 17 00:00:00 2001 From: Aveline <352441+ym@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:48:07 +0100 Subject: [PATCH] chore: make udhcpc the default DHCP client (#990) --- internal/network/types/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/network/types/config.go b/internal/network/types/config.go index 364f8609..33afbcc7 100644 --- a/internal/network/types/config.go +++ b/internal/network/types/config.go @@ -30,7 +30,7 @@ type MDNSListenOptions struct { // NetworkConfig represents the complete network configuration for an interface type NetworkConfig struct { - DHCPClient null.String `json:"dhcp_client,omitempty" one_of:"jetdhcpc,udhcpc" default:"jetdhcpc"` + DHCPClient null.String `json:"dhcp_client,omitempty" one_of:"jetdhcpc,udhcpc" default:"udhcpc"` Hostname null.String `json:"hostname,omitempty" validate_type:"hostname"` HTTPProxy null.String `json:"http_proxy,omitempty" validate_type:"proxy"`