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-apps/lm-sensors/files/fancontrol.initd

22 lines
600 B

#!/sbin/openrc-run
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
FANCONTROL_CONFIGFILE=${FANCONTROL_CONFIGFILE:-"/etc/fancontrol"}
FANCONTROL_SSDARGS=${FANCONTROL_SSDARGS:-"--background --wait 1000"}
FANCONTROL_TERMTIMEOUT=${FANCONTROL_TERMTIMEOUT:-"TERM/60/KILL/5"}
command="/usr/sbin/fancontrol"
command_args="${FANCONTROL_CONFIGFILE}"
start_stop_daemon_args="${FANCONTROL_SSDARGS}"
pidfile="/run/fancontrol.pid"
retry="${FANCONTROL_TERMTIMEOUT}"
required_files="${FANCONTROL_CONFIGFILE}"
depend() {
need localmount
use lm_sensors
}