diff options
author | liang gao <jean.gaoliang@huawei.com> | 2016-07-19 08:17:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-19 08:17:46 +0000 |
commit | 1e6ca0bfaaeadff7ce8ac9b1693b03d122e58a79 (patch) | |
tree | 107cdbd9219a105436b1bcf4067636fe5fb8798f /fuel-plugin/deployment_scripts | |
parent | 1f17dacf4548d8a939b134ab573108d15432c162 (diff) | |
parent | 7a180df8683f8694dfbbc7980ba356e337a84cab (diff) |
Merge "Minor fixes in fuel plugin 1. update yardstick tasks 2. fix typo 3. update comments in pre_build_hook"
Diffstat (limited to 'fuel-plugin/deployment_scripts')
-rwxr-xr-x | fuel-plugin/deployment_scripts/install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fuel-plugin/deployment_scripts/install.sh b/fuel-plugin/deployment_scripts/install.sh index 84ef96c48..76ef433c2 100755 --- a/fuel-plugin/deployment_scripts/install.sh +++ b/fuel-plugin/deployment_scripts/install.sh @@ -8,7 +8,11 @@ VAR_HOME=/var/lib/yardstick rm -rf $BIN_HOME; mkdir -p $BIN_HOME rm -rf $VAR_HOME; mkdir -p $VAR_HOME -sudo apt-get install -y python-dev python-pip libffi-dev libssl-dev libxml2-dev libxslt1-dev +apt-get install -y python-dev python-pip libffi-dev libssl-dev libxml2-dev libxslt1-dev + +#apt-get install python-virtualenv cannot work +#use pip to work around the issue + pip install virtualenv # create python virtual env |