/etc/init/thermald.conf is in thermald 1.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # thermald - thermal daemon
# Upstart configuration file
# Manages platform thermals
description "thermal daemon"
start on runlevel [2345] and started dbus
stop on stopping dbus
#
# don't respawn on error
#
normal exit 1
respawn
#
# consider something wrong if respawned 10 times in 1 minute
#
respawn limit 10 60
exec thermald --no-daemon --dbus-enable
|