Description: Drop start check
 Don't use the start check in /etc/default/thinkfan, as this doesn't work well
 with systemd units without changes. Instead, disable the service on sysv init
 and systemd, and document in /usr/share/doc/thinkfan/README.Debian how to
 enable it.
Author: Evgeni Golov <evgeni@debian.org>
Forwarded: not-needed
Last-Update: 2023-01-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/rcscripts/sysvinit/thinkfan.default
+++ b/rcscripts/sysvinit/thinkfan.default
@@ -1,8 +1,2 @@
-# Should thinkfan be started automatically on boot?
-# Only say "yes" when you know what you are doing, have configured
-# thinkfan correctly for *YOUR* machine and loaded thinkpad_acpi
-# with fan_control=1 (if you have a ThinkPad).
-START=no
-
 # Additional startup parameters
 DAEMON_ARGS="-q"
--- a/rcscripts/sysvinit/thinkfan.init
+++ b/rcscripts/sysvinit/thinkfan.init
@@ -22,7 +22,6 @@
 # This one is compiled-in, you can't change it here!
 PIDFILE=/var/run/$NAME.pid
 SCRIPTNAME=/etc/init.d/$NAME
-START=no
 
 # Exit if the package is not installed
 [ -x "$DAEMON" ] || exit 0
@@ -30,9 +29,6 @@
 # Read configuration variable file if it is present
 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
 
-# Check if daemon is to be started
-[ "$START" = "yes" ] || exit 0
-
 # Load the VERBOSE setting and other rcS variables
 . /lib/init/vars.sh
 
