oswin-tempest-plugin/devstack/plugin.sh
Claudiu Belu e1ebf08001 Fixes devstack plugin script
The repo and path name is oswin-tempest-plugin, not
oswin_tempest_plugin. Because of this, Devstack fails if this plugin
is included in devstack's local.conf.

Change-Id: I3ea29fc0d9d7c3151c21728daf7345fbeb710b68
2018-02-11 08:28:21 -08:00

13 lines
289 B
Bash

#!/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