diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-03-03 03:02:41 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-03-04 04:56:02 +0100 |
commit | fb1c6bd477df5d8b42e56c11959579a51c1e7f81 (patch) | |
tree | 7f576b61df3304c08ddc5434228ab685795e967f /perl-install/install/any.pm | |
parent | 406323ad9ded85a7bd1c729052353602b883931a (diff) | |
download | drakx-fb1c6bd477df5d8b42e56c11959579a51c1e7f81.tar drakx-fb1c6bd477df5d8b42e56c11959579a51c1e7f81.tar.gz drakx-fb1c6bd477df5d8b42e56c11959579a51c1e7f81.tar.bz2 drakx-fb1c6bd477df5d8b42e56c11959579a51c1e7f81.tar.xz drakx-fb1c6bd477df5d8b42e56c11959579a51c1e7f81.zip |
prevent doble loging
Diffstat (limited to 'perl-install/install/any.pm')
-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 36e4da577..463f057e3 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -858,7 +858,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("either CPU or GFX needs firmware", is_firmware_needed_($o)) if is_firmware_needed($o); + add_n_log("either CPU or GFX needs firmware", is_firmware_needed($o)) if is_firmware_needed($o); 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')); |