From 5d63406ca570d21938545d302d06e7b8346a6b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Fri, 11 Mar 2016 16:40:00 +0100 Subject: [PATCH] No longer manually disable some services With the fix of https://bugs.kali.org/view.php?id=1871 we can rely on the package setup to not enable the services which are blacklisted (in preset files provided by base-files). --- kali-config/common/hooks/kali-hacks.chroot | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/kali-config/common/hooks/kali-hacks.chroot b/kali-config/common/hooks/kali-hacks.chroot index 427e4f5..60de4c5 100755 --- a/kali-config/common/hooks/kali-hacks.chroot +++ b/kali-config/common/hooks/kali-hacks.chroot @@ -1,21 +1,5 @@ #!/bin/sh -# Disable inetd by default, update-rc.d fails to disable it by -# default due to https://bugs.debian.org/781155 -# See https://bugs.kali.org/view.php?id=2841 -echo "Manually disabling inetd" -systemctl disable inetd || true - -echo "Manually disabling couchdb" -systemctl disable couchdb || true - -echo "Manually disabling avahi-daemon" -systemctl disable avahi-daemon.socket || true -systemctl disable avahi-daemon.service || true - -echo "Manually disabling colord-sane" -systemctl disable colord-sane.service || true - # Manually enabling pulseaudio for root since autospawning does # not work for root # See https://bugs.kali.org/view.php?id=2392