blob: 7b05c6daf3441e5ac71313ee3a3d551bcdc2e45f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/openrc-run
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="cputemp2maxfreq daemon"
description="Daemon to scale scale_max_freq when CPU temperature rises"
command=/usr/sbin/cputemp2maxfreq
command_args="-l $LOGGER -t $TEMPERATURE $OTHER"
start() {
ebegin "Starting $name"
start-stop-daemon --start --background \
--make-pidfile --pidfile /var/run/cputemp2maxfreq.pid \
--exec ${command} -- ${command_args}
eend $?
}
|