Browse code

midonet: Provide has_neutron_plugin_security_group

Change-Id: I6ac12022bb8998fbec17cfa503db9277aa2eb8b7
Partial-Bug: #1458871

YAMAMOTO Takashi authored on 2015/06/03 17:10:43
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
+}