summaryrefslogtreecommitdiff
blob: ed41a2a0a553c502d84e6683e7b0cf34485df4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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
}