diff options
Diffstat (limited to 'fuel-plugin/pre_build_hook')
-rwxr-xr-x | fuel-plugin/pre_build_hook | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/fuel-plugin/pre_build_hook b/fuel-plugin/pre_build_hook deleted file mode 100755 index 9c0a40e65..000000000 --- a/fuel-plugin/pre_build_hook +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -set -eux - -BUILD_FOR=${BUILD_FOR:-ubuntu} -DIR="$(dirname `readlink -f $0`)" - -function build_pkg { - case $1 in - ubuntu) - rm -rf ${DIR}/repositories/ubuntu; mkdir -p ${DIR}/repositories/ubuntu - - # fixme: don't support offline installation now since pip in - # deployment_scripts/install.sh needs to access to internet - # - # cd ${DIR}/repositories/ubuntu - # Use aptititude; apt-get -d will skip download if package is already installed - # sudo apt-get install aptitude -y - # Download python packages into the repository - # aptitude download python-virtualenv python-dev libffi-dev libssl-dev - - cd ${DIR}/.. - tar -czf ${DIR}/repositories/ubuntu/yardstick.tar.gz . --exclude=yardstick.tar.gz - ;; - - *) echo "Not supported system"; exit 1;; - esac -} - -for system in $BUILD_FOR -do - build_pkg $system -done |