blob: fe35a96721d7842e130c236662d34cadc1c7cd3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openvswitch/files/ovs-vswitchd-r1,v 1.1 2013/04/08 19:37:58 dev-zero Exp $
description="Open vSwitch virtual switch"
pidfile="/var/run/openvswitch/ovs-vswitchd.pid"
command="/usr/sbin/ovs-vswitchd"
command_args="
--pidfile=$pidfile
--detach
--monitor
${OPTIONS} ${DATABASE}"
depend() {
need localmount ovsdb-server
after bootmisc hwdrivers modules
before net
use logger
}
start_pre() {
checkpath --directory "${pidfile%/*}" --mode 0750
}
|