You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/thermald/files/thermald

20 lines
385 B

#!/sbin/openrc-run
depend() {
need dbus
after logger
}
start() {
ebegin "Starting thermald"
start-stop-daemon --start --quiet --name thermald --exec /usr/sbin/thermald -- --dbus-enable --adaptive
eend $?
}
stop() {
ebegin "Stopping thermald"
/usr/bin/dbus-send --system --dest=org.freedesktop.thermald /org/freedesktop/thermald org.freedesktop.thermald.Terminate
eend $?
}