ac02fd029a
* In order to make the ease of installation, devstack plugin is added to install the tempest plugin. Change-Id: I386b834627493df8dc2c3dcd597fa5aa1cc9467f
14 lines
317 B
Bash
14 lines
317 B
Bash
# install_vitrage_tempest_plugin
|
|
function install_vitrage_tempest_plugin {
|
|
setup_dev_lib "vitrage-tempest-plugin"
|
|
}
|
|
|
|
if [[ "$1" == "stack" ]]; then
|
|
case "$2" in
|
|
install)
|
|
echo_summary "Installing vitrage-tempest-plugin"
|
|
install_vitrage_tempest_plugin
|
|
;;
|
|
esac
|
|
fi
|