blob: d634deed6ba0a02f54d257f7c26b8fb44e6ac08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/openrc-run
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
PIDFILE=/var/run/${SVCNAME}.pid
depend() {
need g15daemon
after display-manager
}
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --background --make-pidfile --pidfile ${PIDFILE} --exec \
/usr/bin/g15stats -- "${EXTRA_OPTS}"
eend $?
}
stop() {
ebegin "Stoping ${SVCNAME}"
start-stop-daemon --stop --pidfile ${PIDFILE} --name g15stats
eend $?
}
|