Add Neutron 2015.1 for Ubuntu 14.04
[openstack-build/neutron-build.git] / debian / tests / hyperv-plugin
diff --git a/debian/tests/hyperv-plugin b/debian/tests/hyperv-plugin
deleted file mode 100644 (file)
index 5f31e6f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-#----------------------
-# Testing hyperv-plugin
-#----------------------
-set -e
-apt-get -y install neutron-plugin-hyperv
-
-# update plugin path
-sed -i 's/NEUTRON_PLUGIN_CONFIG\=.*/NEUTRON_PLUGIN_CONFIG\=\"\/etc\/neutron\/plugins\/hyperv\/hyperv_neutron_plugin\.ini\"/g' /etc/default/neutron-server
-sed -i 's/core_plugin/core_plugin \= neutron\.plugins\.hyperv\.hyperv_neutron_plugin\.HyperVNeutronPlugin/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-hyperv
-    echo "OK"
-else
-    echo "ERROR: HYPERV PLUGIN IS NOT RUNNING"
-    apt-get -y remove --purge neutron-plugin-hyperv
-    exit 1
-fi