blob: f7da8e8467898ac62628dca9013864248f1f75e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Open vSwitch virtual switch"
command="/usr/sbin/ovs-vswitchd"
command_args="
--pidfile
--detach
--monitor
${OPTIONS} ${DATABASE}"
pidfile="/run/openvswitch/ovs-vswitchd.pid"
depend() {
use ovsdb-server logger
}
start_pre() {
checkpath -d "/run/openvswitch" -m 0750
}
|