mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-28 18:01:21 +02:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
#!/sbin/runscript
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/openvswitch/files/ovsdb-server,v 1.1 2012/06/27 08:49:34 dev-zero Exp $
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
checkpath -d "/var/run/openvswitch" -m 0750
|
|
|
|
local remote_punix=${DB_SOCKET:+"--remote=punix:${DB_SOCKET}"}
|
|
local remote_db=${REMOTE_DB:+"--remote=${REMOTE_DB}"}
|
|
local private_key=${PRIVATE_KEY:+"--private-key=${PRIVATE_KEY}"}
|
|
local certificate=${CERTIFICATE:+"--certificate=${CERTIFICATE}"}
|
|
local bootstrap_ca_cert=${BOOTSTRAP_CA_CERT:+"--bootstrap-ca-cert=${BOOTSTRAP_CA_CERT}"}
|
|
|
|
ebegin "Starting Open vSwitch DB server"
|
|
start-stop-daemon \
|
|
--start --quiet \
|
|
--pidfile "/var/run/openvswitch/ovsdb-server.pid" \
|
|
--exec /usr/sbin/ovsdb-server -- --pidfile --detach --monitor ${remote_punix} ${remote_db} ${private_key} ${certificate} ${bootstrap_ca_cert} ${DATABASE} ${OPTIONS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Open vSwitch DB server"
|
|
start-stop-daemon --stop --quiet --pidfile "/var/run/openvswitch/ovsdb-server.pid"
|
|
eend $?
|
|
}
|
|
|