Package: hw-detect Version: 1.108 Severity: normal Tags: patch Hi!
While installing a jessie (GNOME) desktop with the latest RC3 installer, I noticed that we still install acpid and acpi-support-base. A while ago, I already filed a bug to have acpid and acpi-support-base removed from tasksel [1], since it duplicates functionality which is nowadays provided by systemd/logind. The same reasons apply to debian-installer. I therefor would like to see those packages dropped from hw-detect as well. I'm not sure, if the "acpi" command line utility is that useful which would warrant having it installed by default. The attached patch drops it as well. Incidentally, this was also suggested for the laptop-task, which still pulls it in. [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758762 [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758762#31 -- System Information: Debian Release: 8.0 APT prefers unstable APT policy: (500, 'unstable'), (200, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diff --git a/hw-detect.sh b/hw-detect.sh index 6f16a52..1e7613c 100755 --- a/hw-detect.sh +++ b/hw-detect.sh @@ -496,11 +496,6 @@ if [ -d /sys/bus/usb ]; then apt-install usbutils || true fi -# Install acpi -if [ -d /proc/acpi ]; then - apt-install acpi acpid acpi-support-base || true -fi - # If hardware has support for pmu, install pbbuttonsd if [ -d /sys/class/misc/pmu/ ]; then apt-install pbbuttonsd || true