Adds devstack oswin-tempest-plugin plugin

This devstack plugin will allow installing oswin-tempest-plugin.

Change-Id: I2f0daa7cdef99b452c17d5525d08c0c3b4e3fd42
This commit is contained in:
Alexandru Muresan 2017-09-01 15:01:23 +03:00
parent 377943cb0d
commit 3cc5f94ac9
1 changed files with 12 additions and 0 deletions

12
devstack/plugin.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
DIR_OSWIN_TEMPEST_PLUGIN=$DEST/oswin_tempest_plugin
if [[ "$1" == "stack" && "$2" == "install" ]]; then
cd $DIR_OSWIN_TEMPEST_PLUGIN
echo "Installing oswin-tempest-plugin"
setup_develop $DIR_OSWIN_TEMPEST_PLUGIN
echo "Sucessfully installed oswin-tempest-plugin"
fi