diff options
| author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-01-16 21:43:19 +0000 |
|---|---|---|
| committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-01-16 22:22:09 +0000 |
| commit | 4071f3401b49fd4ce62d094359a054ae546c81cb (patch) | |
| tree | 9a82bc47d8d9bdbeffbda99cd0702edeb8ec898d | |
| parent | ab0d4b8796c556ede51104968385de42cd3ed99e (diff) | |
| download | drakx-net-4071f3401b49fd4ce62d094359a054ae546c81cb.tar drakx-net-4071f3401b49fd4ce62d094359a054ae546c81cb.tar.gz drakx-net-4071f3401b49fd4ce62d094359a054ae546c81cb.tar.bz2 drakx-net-4071f3401b49fd4ce62d094359a054ae546c81cb.tar.xz drakx-net-4071f3401b49fd4ce62d094359a054ae546c81cb.zip | |
Change default DHCP client to dhcpcd and remove dhclient (mga#30938)
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | lib/network/connection/ethernet.pm | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,3 +1,5 @@ +- change default DHCP client to dhcpcd and remove dhclient (mga#30938) + 2.60 - drakvpn: o default to "yes" ehen asking whether to connect now diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm index 0450149..bf0bc3d 100644 --- a/lib/network/connection/ethernet.pm +++ b/lib/network/connection/ethernet.pm @@ -7,7 +7,7 @@ use lib qw(/usr/lib/libDrakX); # helps perl_checker use common; use network::tools; -our @dhcp_clients = qw(dhclient dhcpcd pump dhcpxd); +our @dhcp_clients = qw(dhcpcd pump dhcpxd); sub get_type_name() { N("Ethernet") } sub get_type_description() { N("Wired (Ethernet)") } @@ -318,7 +318,6 @@ use run_program; sub install_dhcp_client { my ($in, $client) = @_; my %packages = ( - "dhclient" => "dhcp-client", ); #- use default dhcp client if none is provided $client ||= $dhcp_clients[0]; |
