Merge pull request #154 from cloudbuilders/openvswitch_fix

emergency fix to avoid installation of openvswitch if user is not using quantum
diff --git a/files/apts/quantum b/files/apts/quantum
deleted file mode 100644
index f5008ad..0000000
--- a/files/apts/quantum
+++ /dev/null
@@ -1,2 +0,0 @@
-openvswitch-switch
-openvswitch-datapath-dkms
diff --git a/stack.sh b/stack.sh
index 31194bc..6a001c6 100755
--- a/stack.sh
+++ b/stack.sh
@@ -787,6 +787,10 @@
 
 # Quantum
 if [[ "$ENABLED_SERVICES" =~ "q-svc" ]]; then
+    # Install deps
+    # FIXME add to files/apts/quantum, but don't install if not needed!
+    apt_get install openvswitch-switch openvswitch-datapath-dkms
+
     # Create database for the plugin/agent
     if [[ "$Q_PLUGIN" = "openvswitch" ]]; then
         if [[ "$ENABLED_SERVICES" =~ "mysql" ]]; then