summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristi Nikolla <knikolla@bu.edu>2016-10-28 11:58:01 +0200
committerJulia Varlamova <jvarlamova@mirantis.com>2016-12-26 09:31:32 +0000
commite217fe3b36a982aa51f487dd0c973d6a290ab2c6 (patch)
tree891faf336f6811c2b55ab2fb567e5f245acff5fe
parent934a674b975acb3fc069b50778ffd9e8d8f5bc56 (diff)
downloadkeystone-e217fe3b36a982aa51f487dd0c973d6a290ab2c6.tar.gz
Add structure for Devstack plugin
This review creates the structure for the Devstack plugin and prints to the console to ensure its execution in the gate. Follow-up reviews will do more useful stuff like setting up the environment for our functional testing (ldap, federation). Depends-On: Ia8d07b4295ca165be01e44466c95d5275f596e83 Change-Id: I820ae355ae8f3183fee2b8207e3c17e8bd10dc17
-rw-r--r--devstack/plugin.sh44
-rw-r--r--tox.ini2
2 files changed, 45 insertions, 1 deletions
diff --git a/devstack/plugin.sh b/devstack/plugin.sh
new file mode 100644
index 000000000..b194bc18f
--- /dev/null
+++ b/devstack/plugin.sh
@@ -0,0 +1,44 @@
+#!/usr/bin/env bash
+# Copyright 2016 Massachusetts Open Cloud
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+# For more information on Devstack plugins, including a more detailed
+# explanation on when the different steps are executed please see:
+# http://docs.openstack.org/developer/devstack/plugins.html
+
+if [[ "$1" == "stack" && "$2" == "install" ]]; then
+ # This phase is executed after the projects have been installed
+ echo "Keystone plugin - Install phase"
+
+elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
+ # This phase is executed after the projects have been configured and
+ # before they are started
+ echo "Keystone plugin - Post-config phase"
+
+elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
+ # This phase is executed after the projects have been started
+ echo "Keystone plugin - Extra phase"
+fi
+
+if [[ "$1" == "unstack" ]]; then
+ # Called by unstack.sh and clean.sh
+ # Undo what was performed during the "post-config" and "extra" phases
+ :
+fi
+
+if [[ "$1" == "clean" ]]; then
+ # Called by clean.sh after the "unstack" phase
+ # Undo what was performed during the "install" phase
+ :
+fi
diff --git a/tox.ini b/tox.ini
index e60801b35..e80e3a1bd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -48,7 +48,7 @@ commands =
flake8
# Run bash8 during pep8 runs to ensure violations are caught by
# the check and gate queues
- bashate examples/pki/gen_pki.sh
+ bashate examples/pki/gen_pki.sh devstack/plugin.sh
# Run security linter
bandit -r keystone -x tests