2018-01-03 19:14:09 +03:00
|
|
|
#!/sbin/openrc-run
|
2013-09-09 14:24:43 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-11-19 13:54:37 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2013-09-09 14:24:43 +04:00
|
|
|
pidfile="/run/nvidia-smi.pid"
|
2012-11-19 13:54:37 +04:00
|
|
|
|
|
|
|
depend() {
|
|
|
|
after modules
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
ebegin "Starting NVIDIA System Management Interface"
|
|
|
|
rm -f ${pidfile}
|
|
|
|
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 $?
|
|
|
|
}
|