From d43bc61bcc27be6d2fed8c8f1dedeae9bfdb6559 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Tue, 24 Mar 2015 15:01:15 -0700 Subject: [PATCH] Temporarily add trove plugin configuration In order to move the trove configuration from devstack to trove, we need to enable the plugin. This should be done in a job config, but since that can not be tested with a change and will break if it lands before the plugin is moved, enable it in devstack-gate to facilitate the transition. Once the transition is complete, this can be removed. Change-Id: I3506dec0e6097f9c2e9267110fdfb768faa23c85 Depends-On: I15667bf9c063e886755aef29056ef0028cbb1080 --- devstack-vm-gate.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index 08dce001..0202b031 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -160,6 +160,14 @@ ZAQAR_BACKEND=$DEVSTACK_GATE_ZAQAR_BACKEND DATABASE_QUERY_LOGGING=True EOF + # TODO(jeblair): Remove when this has been added to jobs in + # project-config. It's *super important* that this happens after + # DEST is set, as enable_plugin uses DEST value + if [[ ",$MY_ENABLED_SERVICES," =~ ,trove, ]]; then + echo "enable_plugin trove git://git.openstack.org/openstack/trove" >>"$localrc_file" + fi + + if [[ "$DEVSTACK_CINDER_SECURE_DELETE" -eq "0" ]]; then echo "CINDER_SECURE_DELETE=False" >>"$localrc_file" fi