Update DEB-specs to 2013.2 version
[openstack-build/neutron-build.git] / debian / tests / ryu-plugin
diff --git a/debian/tests/ryu-plugin b/debian/tests/ryu-plugin
new file mode 100644 (file)
index 0000000..a3260a5
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+#-------------------
+# Testing ryu-plugin
+#-------------------
+set -e
+apt-get -y install neutron-plugin-ryu
+
+# update plugin path
+sed -i 's/NEUTRON_PLUGIN_CONFIG\=.*/NEUTRON_PLUGIN_CONFIG\=\"\/etc\/neutron\/plugins\/ryu\/ryu\.ini\"/g' /etc/default/neutron-server
+sed -i 's/core_plugin/core_plugin \= neutron\.plugins\.ryu\.ryu_neutron_plugin\.RyuNeutronPluginV2/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-ryu
+    echo "OK"
+else
+    echo "ERROR: RYU PLUGIN IS NOT RUNNING"
+    apt-get -y remove --purge neutron-plugin-ryu
+    exit 1
+fi