1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/openvswitch/ovs-vswitchd.initd
2019-09-27 19:10:10 +00:00

25 lines
633 B
Text

#!/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
}