diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-02-19 23:20:55 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-02-19 23:20:55 +0100 |
commit | c5df39ea2f514c40ec69be517ae0fc0ca7860eb3 (patch) | |
tree | cdf67f0cff5f6abd54fdf249b442e095d42da7c5 /perl-install/install | |
parent | 450f6e7ea137198662316e8546a8be800a7a34c3 (diff) | |
download | drakx-c5df39ea2f514c40ec69be517ae0fc0ca7860eb3.tar drakx-c5df39ea2f514c40ec69be517ae0fc0ca7860eb3.tar.gz drakx-c5df39ea2f514c40ec69be517ae0fc0ca7860eb3.tar.bz2 drakx-c5df39ea2f514c40ec69be517ae0fc0ca7860eb3.tar.xz drakx-c5df39ea2f514c40ec69be517ae0fc0ca7860eb3.zip |
fix log message
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 747262039..c0dcb86af 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -687,7 +687,7 @@ sub default_packages { add_n_log("have crypted DM", "cryptsetup") if !is_empty_array_ref($o->{all_hds}{dmcrypts}); add_n_log("some disks are fake RAID", qw(mdadm dmraid)) if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}}; add_n_log("CPU needs microcode", "microcode_ctl") if detect_devices::hasCPUMicrocode(); - add_n_log("CPU needs cpufreq", 'cpupower') if detect_devices::hasCPUFreq(); + 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}}; |