Add Neutron 2015.1 for Ubuntu 14.04
[openstack-build/neutron-build.git] / debian / tests / bigswitch-plugin
diff --git a/debian/tests/bigswitch-plugin b/debian/tests/bigswitch-plugin
deleted file mode 100644 (file)
index 0750415..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#-------------------------
-# Testing bigswitch-plugin
-#-------------------------
-set -e
-apt-get -y install neutron-plugin-bigswitch
-
-# update plugin path
-sed -i 's/NEUTRON_PLUGIN_CONFIG\=.*/NEUTRON_PLUGIN_CONFIG\=\"\/etc\/neutron\/plugins\/bigswitch\/restproxy\.ini\"/g' /etc/default/neutron-server
-sed -i 's/core_plugin/core_plugin \= neutron\.plugins\.bigswitch\.plugin\.NeutronRestProxyV2/g' /etc/neutron/neutron.conf
-service neutron-server restart  > /dev/null 2>&1
-if pidof -x neutron-server > /dev/null; then
-    apt-get -y remove --purge neutron-plugin-bigswitch
-    echo "OK"
-else
-    echo "ERROR: BIGSWITCH PLUGIN IS NOT RUNNING"
-    apt-get -y remove --purge neutron-plugin-bigswitch
-    exit 1
-fi