Move scripts for openvswitch to docker_templates

Change-Id: I04e804bb36daf53ce2eb0db804008deb7ebc6b11
Partially-Implements: blueprint remove-docker-dir
This commit is contained in:
Steven Dake 2015-08-27 18:59:21 -07:00
parent 9fe28bd220
commit c685119fec
10 changed files with 67 additions and 72 deletions
docker/common/openvswitch
docker_templates/openvswitch

@ -1,3 +0,0 @@
#!/bin/bash
#This file should be a noop. It just needs to exist, but it don't perform any function

@ -1,25 +0,0 @@
#!/bin/bash
set -o errexit
LOG_FILE="/var/log/openvswitch/ovsdb-server.log"
DB_FILE="/etc/openvswitch/conf.db"
UNIXSOCK_DIR="/var/run/openvswitch"
UNIXSOCK="${UNIXSOCK_DIR}/db.sock"
CMD="/usr/sbin/ovsdb-server"
ARGS="$DB_FILE -vconsole:emer -vsyslog:err -vfile:info --remote=punix:${UNIXSOCK} --log-file=${LOG_FILE}"
# Loading common functions.
source /opt/kolla/kolla-common.sh
# Execute config strategy
set_configs
mkdir -p "${UNIXSOCK_DIR}"
if [[ ! -e "${DB_FILE}" ]]; then
ovsdb-tool create "${DB_FILE}"
fi
exec $CMD $ARGS

@ -1,3 +0,0 @@
#!/bin/bash
#This file should be a noop. It just needs to exist, but it don't perform any function

@ -1,17 +0,0 @@
#!/bin/bash
bridge=$1
port=$2
ovs-vsctl br-exists $bridge; rc=$?
if [[ $rc == 2 ]]; then
changed=changed
ovs-vsctl add-br $bridge
fi
if [[ ! $(ovs-vsctl list-ports $bridge) =~ $(echo "\<$port\>") ]]; then
changed=changed
ovs-vsctl add-port $bridge $port
fi
echo $changed

@ -1,19 +0,0 @@
#!/bin/bash
LOG_FILE="/var/log/openvswitch/ovs-vswitchd.log"
DB_FILE="/etc/openvswitch/conf.db"
UNIXSOCK_DIR="/var/run/openvswitch"
UNIXSOCK="${UNIXSOCK_DIR}/db.sock"
CMD="/usr/sbin/ovs-vswitchd"
ARGS="unix:${UNIXSOCK} -vconsole:emer -vsyslog:err -vfile:info --mlockall --log-file=${LOG_FILE}"
# Loading common functions.
source /opt/kolla/kolla-common.sh
# Execute config strategy
set_configs
modprobe openvswitch
mkdir -p "${UNIXSOCK_DIR}"
exec $CMD $ARGS

@ -1 +0,0 @@
../../../docker/common/openvswitch/ovs-db-server/config-external.sh

@ -0,0 +1,3 @@
#!/bin/bash
#This file should be a noop. It just needs to exist, but it don't perform any function

@ -1 +0,0 @@
../../../docker/common/openvswitch/ovs-db-server/start.sh

@ -0,0 +1,25 @@
#!/bin/bash
set -o errexit
LOG_FILE="/var/log/openvswitch/ovsdb-server.log"
DB_FILE="/etc/openvswitch/conf.db"
UNIXSOCK_DIR="/var/run/openvswitch"
UNIXSOCK="${UNIXSOCK_DIR}/db.sock"
CMD="/usr/sbin/ovsdb-server"
ARGS="$DB_FILE -vconsole:emer -vsyslog:err -vfile:info --remote=punix:${UNIXSOCK} --log-file=${LOG_FILE}"
# Loading common functions.
source /opt/kolla/kolla-common.sh
# Execute config strategy
set_configs
mkdir -p "${UNIXSOCK_DIR}"
if [[ ! -e "${DB_FILE}" ]]; then
ovsdb-tool create "${DB_FILE}"
fi
exec $CMD $ARGS

@ -1 +0,0 @@
../../../docker/common/openvswitch/ovs-vswitchd/config-external.sh

@ -0,0 +1,3 @@
#!/bin/bash
#This file should be a noop. It just needs to exist, but it don't perform any function

@ -1 +0,0 @@
../../../docker/common/openvswitch/ovs-vswitchd/ovs_ensure_configured.sh

@ -0,0 +1,17 @@
#!/bin/bash
bridge=$1
port=$2
ovs-vsctl br-exists $bridge; rc=$?
if [[ $rc == 2 ]]; then
changed=changed
ovs-vsctl add-br $bridge
fi
if [[ ! $(ovs-vsctl list-ports $bridge) =~ $(echo "\<$port\>") ]]; then
changed=changed
ovs-vsctl add-port $bridge $port
fi
echo $changed

@ -1 +0,0 @@
../../../docker/common/openvswitch/ovs-vswitchd/start.sh

@ -0,0 +1,19 @@
#!/bin/bash
LOG_FILE="/var/log/openvswitch/ovs-vswitchd.log"
DB_FILE="/etc/openvswitch/conf.db"
UNIXSOCK_DIR="/var/run/openvswitch"
UNIXSOCK="${UNIXSOCK_DIR}/db.sock"
CMD="/usr/sbin/ovs-vswitchd"
ARGS="unix:${UNIXSOCK} -vconsole:emer -vsyslog:err -vfile:info --mlockall --log-file=${LOG_FILE}"
# Loading common functions.
source /opt/kolla/kolla-common.sh
# Execute config strategy
set_configs
modprobe openvswitch
mkdir -p "${UNIXSOCK_DIR}"
exec $CMD $ARGS