diff options
author | 2016-08-08 17:08:03 -0700 | |
---|---|---|
committer | 2016-08-08 17:08:03 -0700 | |
commit | e3f40d1824441fe9d3413ec7fa49975fc1fccdef (patch) | |
tree | badaa233f2ae7600d76edd8a36bbaba91024d236 /tests/utils | |
parent | 86acad243cc90a710bcec1658562a314ba4aa33b (diff) |
Add extra steps to make CLI work
JIRA: MODELS-23
Change-Id: I45ae960e25d575c58674b83e774683c7effb4505
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'tests/utils')
-rw-r--r-- | tests/utils/cloudify-setup.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/utils/cloudify-setup.sh b/tests/utils/cloudify-setup.sh index 28a25a9..3ad4f46 100644 --- a/tests/utils/cloudify-setup.sh +++ b/tests/utils/cloudify-setup.sh @@ -157,7 +157,7 @@ echo "cloudify-setup.sh: Setup admin-openrc.sh" source /tmp/cloudify/admin-openrc.sh if [ "$1" == "cloudify-manager" ]; then - echo "cloudify-setup.sh: Prepare the Cloudify Manager data" + echo "cloudify-setup.sh: Prepare the Cloudify Manager prerequisites and data" mkdir -p ~/cloudify-manager cd ~/cloudify-manager wget https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz @@ -214,5 +214,10 @@ if [ "$1" == "cloudify-manager" ]; then echo "cloudify-setup.sh: install needed packages to support blueprints 'not using managed plugins'" # See https://cloudifysource.atlassian.net/browse/CFY-5050 cfy ssh -c "sudo yum install -y gcc gcc-c++ python-devel" +else + echo "cloudify-setup.sh: Prepare the Cloudify CLI prerequisites and data" + cd ~ + git clone https://github.com/cloudify-cosmo/cloudify-openstack-plugin.git + pip install -r requirements.txt + pip install . fi - |