blob: 6857f60f7cc8fed75b4df40a9b9e2ff9174c67d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command="/usr/bin/thermald"
command_args="--dbus-enable"
start_stop_daemon_args="--quiet"
# start() {
# ebegin "Starting thermald"
#
# start-stop-daemon --start --quiet /usr/bin/thermald --no-daemon --dbus-enable
# }
#
# stop() {
# ebegin "Stopping thermald"
# start-stop-daemon --stop --quiet --pidfile "${DISTCCD_PIDFILE}"
# eend $?
# }
|