diff options
author | 2016-12-29 02:16:41 +0000 | |
---|---|---|
committer | 2016-12-29 02:16:41 +0000 | |
commit | 31f563b8aa2e6dcf652cb7e9dfdc3f6c7316dc1d (patch) | |
tree | ff68d72d9bd2bbb545d0c070cc0c5479322f10b3 /fuel-plugin/deployment_scripts/install.sh | |
parent | 827e341ed222a562a87d8f238fc0a6a16cfb1393 (diff) | |
parent | 2cdd3b312fa85fdd73bf676a05e3c76cf7c2d838 (diff) |
Merge "Fix installation dependency and authentication issue for fuel plugin"
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 |