diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2016-07-11 03:45:45 +0800 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2016-07-11 05:27:38 +0800 |
commit | e24c6c15d1ade7e0ddd1a39810bb803ed3bd9d56 (patch) | |
tree | bc6bb34761026adfbc1d37942e57e8f5cd434b0c /fuel-plugin/deployment_scripts/install.sh | |
parent | eacef205efa9289bccbf38d82df07cdc63486d35 (diff) |
Update fuel plugin
1. update fuel plugin builder
2. change install directory in yardstick plugin
Change-Id: Ice560955bb659ca86476b9dd02b3028b853ac01c
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'fuel-plugin/deployment_scripts/install.sh')
-rwxr-xr-x | fuel-plugin/deployment_scripts/install.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/fuel-plugin/deployment_scripts/install.sh b/fuel-plugin/deployment_scripts/install.sh index f0bb3e366..84ef96c48 100755 --- a/fuel-plugin/deployment_scripts/install.sh +++ b/fuel-plugin/deployment_scripts/install.sh @@ -3,24 +3,24 @@ set -eux HOST=$1 -INSTALL_HOME=/opt/yardstick -rm -rf $INSTALL_HOME; mkdir -p $INSTALL_HOME +BIN_HOME=/opt/yardstick +VAR_HOME=/var/lib/yardstick +rm -rf $BIN_HOME; mkdir -p $BIN_HOME +rm -rf $VAR_HOME; mkdir -p $VAR_HOME -cd $INSTALL_HOME - -sudo apt-get install -y python-virtualenv python-dev python-pip libffi-dev libssl-dev libxml2-dev libxslt1-dev -pip install --user virtualenv -pip install --upgrade virtualenv +sudo apt-get install -y python-dev python-pip libffi-dev libssl-dev libxml2-dev libxslt1-dev +pip install virtualenv # create python virtual env -virtualenv $INSTALL_HOME/yardstick_venv -# source $INSTALL_HOME/yardstick_venv/bin/activate +virtualenv $VAR_HOME + +export PS1="yardstick" +source $VAR_HOME/bin/activate easy_install -U setuptools -mkdir bin -cd $INSTALL_HOME/bin +cd $BIN_HOME curl http://$HOST:8080/plugins/fuel-plugin-yardstick-0.9/repositories/ubuntu/yardstick.tar.gz | tar xzvf - -pip install -r tests/ci/requirements.txt +python setup.py develop |