mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
17 lines
404 B
Plaintext
17 lines
404 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command=/opt/inn/bin/ovdb_init
|
|
pidfile=/run/news/ovdb_server.pid
|
|
|
|
stop() {
|
|
ebegin "Stopping ovdb_server"
|
|
start-stop-daemon --stop --pidfile /run/news/ovdb_server.pid
|
|
eend $?
|
|
|
|
ebegin "Stopping ovdb_monitor"
|
|
start-stop-daemon --stop --pidfile /run/news/ovdb_monitor.pid
|
|
ewend $?
|
|
}
|