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/app-laptop/i8kutils/files/i8kmon.init

20 lines
397 B

#!/sbin/openrc-run
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
depend() {
after modules
}
command="/usr/bin/i8kmon"
command_args="--nouserconfig"
command_background=true
pidfile="/run/${RC_SVCNAME}.pid"
start_pre() {
if [ ! -e /proc/i8k ]; then
eerror "The dell-smm-hwmon (i8k) driver is not loaded or installed"
return 1
fi
}