summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-16 21:36:02 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2026-01-16 22:44:00 +0000
commit0be2e8406a93d97ff2ed9be73286807e051baa5f (patch)
tree5626cd0d77655efd48ece25d23fe7a783ef93cd9 /perl-install/install
parent8b146d6547ee5cf8049a7566efd75cd1df8314e7 (diff)
downloaddrakx-0be2e8406a93d97ff2ed9be73286807e051baa5f.tar
drakx-0be2e8406a93d97ff2ed9be73286807e051baa5f.tar.gz
drakx-0be2e8406a93d97ff2ed9be73286807e051baa5f.tar.bz2
drakx-0be2e8406a93d97ff2ed9be73286807e051baa5f.tar.xz
drakx-0be2e8406a93d97ff2ed9be73286807e051baa5f.zip
installer: change default DHCP client to dhcpcd (mga#30938)
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/any.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index a67d460fb..53d4cf9a5 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,4 @@
++ change default DHCP client to dhcpcd (mga#30938)
- fix incorrect timezone list when configureTimezone() is called more
than once
- ask for user's timezone at the start of installation and correct the
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 19bd157cb..fecd03c1b 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -788,7 +788,7 @@ sub default_packages {
add_n_log("CPU needs cpupower", 'cpupower') if detect_devices::hasCPUFreq();
add_n_log("APM support needed", 'apmd') if -e "/proc/apm";
add_n_log("needed by hardware", detect_devices::probe_name('Pkg'));
- my @ltmp = map { $_->{BOOTPROTO} eq 'dhcp' ? $_->{DHCP_CLIENT} || 'dhcp-client' : () } values %{$o->{net}{ifcfg}};
+ my @ltmp = map { $_->{BOOTPROTO} eq 'dhcp' ? $_->{DHCP_CLIENT} || 'dhcpcd' : () } values %{$o->{net}{ifcfg}};
add_n_log("needed by networking", @ltmp) if @ltmp;
# will get auto selected at summary stage for bootloader:
add_n_log("needed later at summary stage", qw(acpi acpid));