diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-01 02:37:22 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-01 02:41:54 +0200 |
commit | ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2 (patch) | |
tree | f55abbfa3e7ced651bbf2317f434c7f86aa2519e /perl-install | |
parent | 2eba0d7dcd799c3e220dcb4ee22b43b88baec16f (diff) | |
download | drakx-ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2.tar drakx-ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2.tar.gz drakx-ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2.tar.bz2 drakx-ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2.tar.xz drakx-ea72e206bd6ab2cb5fbe15340c0cde9cf04d5db2.zip |
acpi service doesn't exist anymore
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/any.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 4b664e281..75aeebeab 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - diskdrake: o it's now possible to set labels on exfat +- drakboot: + o do not try to enable non existing acpi service - fix services::running_systemd() - service_harddrake: recognise noxconf boot command line option (disables creation of xorg.conf, allowing X server to configure itself) diff --git a/perl-install/any.pm b/perl-install/any.pm index 55ad37d3a..0d58f95cb 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -121,7 +121,7 @@ sub install_acpi_pkgs { $do_pkgs->ensure_files_are_installed([ [ qw(acpi acpi) ], [ qw(acpid acpid) ] ], $::isInstall); } require services; - services::set_status($_, $use_acpi, $::isInstall) foreach qw(acpi acpid); + services::set_status($_, $use_acpi, $::isInstall) foreach qw(acpid); } sub setupBootloaderBeforeStandalone { diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d43fd2306..b75421f89 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- bootloader config: + o do not try to enable non existing acpi service - partitioning: o it's now possible to set labels on exfat - select only once needed fs tools |