Browse code

Merge "midonet: Provide has_neutron_plugin_security_group"

Jenkins authored on 2015/07/08 01:32:27
Showing 1 changed files
... ...
@@ -1,4 +1,10 @@
1 1
 #!/bin/bash
2 2
 
3
-# REVISIT(devvesa): This file is intentionally left empty
4
-# in order to keep Q_PLUGIN=midonet work.
3
+# REVISIT(devvesa): This file is needed so Q_PLUGIN=midonet will work.
4
+
5
+# FIXME(yamamoto): This function should not be here, but unfortunately
6
+# devstack calls it before the external plugins are fetched
7
+function has_neutron_plugin_security_group {
8
+    # 0 means True here
9
+    return 0
10
+}