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/tlp/files/tlp.init

29 lines
337 B

#!/sbin/openrc-run
command=/usr/sbin/tlp
name="TLP"
extra_started_commands="reload stat"
depend() {
need udev
}
start() {
ebegin "Starting tlp..."
$command init start
eend $?
}
reload() {
ebegin "Reloading tlp's configuration..."
$command start
eend $?
}
stop() {
einfo "Reboot to stop tlp."
}
stat() {
/usr/bin/tlp-stat
}