blob: 619f8c3fecf3efb2633729fbce36422c1afdc8a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: 75aebb5ce348ace2b33e7f3c5d7296cb256d5342 $
pidfile="/var/run/nvidia-smi.pid"
depend() {
after modules
}
start_pre() {
[ -x /opt/bin/nvidia-smi ] && /opt/bin/nvidia-smi -L >/dev/null 2>&1 && return 0
eerror "NVIDIA System Management Interface utility not installed or 'nvidia' kernel module not loadable"
return 1
}
start() {
ebegin "Starting NVIDIA System Management Interface"
start-stop-daemon --start --quiet \
--pidfile "${pidfile}" --make-pidfile --background \
--exec /opt/bin/nvidia-smi -- -q -l 300
eend $?
}
stop() {
ebegin "Stopping NVIDIA System Management Interface"
start-stop-daemon --stop --quiet --pidfile "${pidfile}"
eend $?
}
|