aboutsummaryrefslogtreecommitdiff
blob: 84e17e2a97770973edda65a12546f34407aa31eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 $?
}