summaryrefslogtreecommitdiff
path: root/testing/ovn/ovn-northd.initd
blob: 0638b09dc065972ec49d6bd27d3f0983c1d26ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/openrc-run

command="/usr/share/ovn/scripts/ovn-ctl"
command_args="start_northd --ovn-manage-ovsdb=no --no-monitor $OVN_CTL_OPTS"
command_background="yes"
pidfile="/run/ovn/$RC_SVCNAME.pid"
description="Open Virtual Network central control daemon"

depend() {
	need net
	after firewall
}

start_pre() {
	checkpath --directory "${pidfile%/*}"
}

stop() {
	ebegin "Stopping $RC_SVCNAME"
	$command stop_northd --no-monitor
	eend $?
}