aboutsummaryrefslogtreecommitdiffstats
path: root/community/openvswitch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 02:05:57 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 02:20:04 +0100
commitcfcf291b308910b65193adb6ad0f7027ae444b1a (patch)
tree9673ea729b3892fe9927fdbb463550b08eb925fd /community/openvswitch
parent1fb1ca20db29801322c38673b84cdbc38ce09647 (diff)
downloadaports-cfcf291b308910b65193adb6ad0f7027ae444b1a.tar.bz2
aports-cfcf291b308910b65193adb6ad0f7027ae444b1a.tar.xz
Remove unused files
Diffstat (limited to 'community/openvswitch')
-rwxr-xr-xcommunity/openvswitch/ifupdown.sh105
1 files changed, 0 insertions, 105 deletions
diff --git a/community/openvswitch/ifupdown.sh b/community/openvswitch/ifupdown.sh
deleted file mode 100755
index c6f43662fe..0000000000
--- a/community/openvswitch/ifupdown.sh
+++ /dev/null
@@ -1,105 +0,0 @@
-#! /bin/sh
-
-# Copyright (c) 2012, 2013 Nicira, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at:
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Have a look at /usr/share/doc/openvswitch-switch/README.Debian
-# for more information about configuring the /etc/network/interfaces.
-
-if [ -z "${IF_OVS_TYPE}" ]; then
- exit 0
-fi
-
-ovs_vsctl() {
- ovs-vsctl --timeout=5 "$@"
-}
-
-if (ovs_vsctl --version) > /dev/null 2>&1; then :; else
- exit 0
-fi
-
-if ! /etc/init.d/ovs-vswitchd status &>/dev/null; then
- /etc/init.d/ovs-modules start
- /etc/init.d/ovsdb-server start
- /etc/init.d/ovs-vswitchd start
-fi
-
-if [ "${MODE}" = "start" ]; then
- eval OVS_EXTRA=\"${IF_OVS_EXTRA}\"
-
- case "${IF_OVS_TYPE}" in
- OVSBridge)
- ovs_vsctl -- --may-exist add-br "${IFACE}" ${IF_OVS_OPTIONS}\
- ${OVS_EXTRA+-- $OVS_EXTRA}
-
- if [ ! -z "${IF_OVS_PORTS}" ]; then
-# ifup --allow="${IFACE}" ${IF_OVS_PORTS}
- ifup ${IF_OVS_PORTS}
- fi
- ;;
- OVSPort)
- ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\
- "${IFACE}" ${IF_OVS_OPTIONS} \
- ${OVS_EXTRA+-- $OVS_EXTRA}
-
- ip link set dev "${IFACE}" up
- ;;
- OVSIntPort)
- ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\
- "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}"\
- type=internal ${OVS_EXTRA+-- $OVS_EXTRA}
-
- ip link set dev "${IFACE}" up
- ;;
- OVSBond)
- ovs_vsctl -- --fake-iface add-bond "${IF_OVS_BRIDGE}"\
- "${IFACE}" ${IF_OVS_BONDS} ${IF_OVS_OPTIONS} \
- ${OVS_EXTRA+-- $OVS_EXTRA}
-
- ip link set dev "${IFACE}" up
- for slave in ${IF_OVS_BONDS}
- do
- ip link set dev "${slave}" up
- done
- ;;
- OVSTunnel)
- ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\
- "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}" \
- type=${IF_OVS_TUNNEL_TYPE} ${IF_OVS_TUNNEL_OPTIONS} \
- ${OVS_EXTRA+-- $OVS_EXTRA}
- ;;
- *)
- exit 0
- ;;
- esac
-elif [ "${MODE}" = "stop" ]; then
- case "${IF_OVS_TYPE}" in
- OVSBridge)
- if [ ! -z "${IF_OVS_PORTS}" ]; then
-# ifdown --allow="${IFACE}" ${IF_OVS_PORTS}
- ifdown ${IF_OVS_PORTS}
- fi
-
- ovs_vsctl -- --if-exists del-br "${IFACE}"
- ;;
- OVSPort|OVSIntPort|OVSBond|OVSTunnel)
- ovs_vsctl -- --if-exists del-port "${IF_OVS_BRIDGE}" "${IFACE}"
- ;;
- *)
- exit 0
- ;;
- esac
-fi
-
-exit 0