diff options
author | Edwin Zhai <edwin.zhai@intel.com> | 2016-12-25 16:00:06 -0800 |
---|---|---|
committer | Edwin Zhai <edwin.zhai@intel.com> | 2016-12-27 14:54:09 -0800 |
commit | 2cdd3b312fa85fdd73bf676a05e3c76cf7c2d838 (patch) | |
tree | d1a04154b107e1541ed9d84f011b00ea1f2a694c /fuel-plugin/deployment_scripts/install.sh | |
parent | ca1bb41a5af846e150b8f4d87f336eec05ea21f8 (diff) |
Fix installation dependency and authentication issue for fuel plugin
JIRA: YARDSTICK-516
Change-Id: I348959c2ea3b6ed586f487cde88a173eb593be4f
Signed-off-by: Edwin Zhai <edwin.zhai@intel.com>
Diffstat (limited to 'fuel-plugin/deployment_scripts/install.sh')
-rwxr-xr-x | fuel-plugin/deployment_scripts/install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fuel-plugin/deployment_scripts/install.sh b/fuel-plugin/deployment_scripts/install.sh index 6882f0be2..18f4fc2c2 100755 --- a/fuel-plugin/deployment_scripts/install.sh +++ b/fuel-plugin/deployment_scripts/install.sh @@ -27,4 +27,7 @@ cd $BIN_HOME curl http://$HOST:8080/plugins/fuel-plugin-yardstick-1.0/repositories/ubuntu/yardstick.tar.gz | tar xzvf - -python setup.py develop +# install dependency +pip install -r requirements.txt + +python setup.py install |