From aa54511727614a837992845be416b9bd921be2e4 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 3 Jun 2015 17:10:43 +0900 Subject: [PATCH] midonet: Provide has_neutron_plugin_security_group Change-Id: I6ac12022bb8998fbec17cfa503db9277aa2eb8b7 Partial-Bug: #1458871 --- lib/neutron_plugins/midonet | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/neutron_plugins/midonet b/lib/neutron_plugins/midonet index 9e72aa0ce9..ca0b70c76c 100644 --- a/lib/neutron_plugins/midonet +++ b/lib/neutron_plugins/midonet @@ -1,4 +1,10 @@ #!/bin/bash -# REVISIT(devvesa): This file is intentionally left empty -# in order to keep Q_PLUGIN=midonet work. +# REVISIT(devvesa): This file is needed so Q_PLUGIN=midonet will work. + +# FIXME(yamamoto): This function should not be here, but unfortunately +# devstack calls it before the external plugins are fetched +function has_neutron_plugin_security_group { + # 0 means True here + return 0 +}