File: plugin.sh

package info (click to toggle)
manila-tempest-plugin 2.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,100 kB
  • sloc: python: 26,819; makefile: 24; sh: 12
file content (16 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Directory where this plugin.sh file is
MANILA_TEMPEST_PLUGIN_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)

# install_manila_tempest_plugin
function install_manila_tempest_plugin {
    setup_dev_lib "manila-tempest-plugin"
}

if [[ "$1" == "stack" ]]; then
    case "$2" in
        install)
            echo_summary "Installing manila-tempest-plugin"
            install_manila_tempest_plugin
            ;;
    esac
fi