fuel: fix collectd ceilometer installation script
[barometer.git] / src / fuel-plugin / pre_build_hook
1 #!/bin/bash
2
3 # Add here any the actions which are required before plugin build
4 # like packages building, packages downloading from mirrors and so on.
5 # The script should return 0 if there were no errors.
6 #!/bin/bash
7
8 set -eux
9
10 BUILD_FOR=${BUILD_FOR:-ubuntu}
11 DIR="$(dirname `readlink -f $0`)"
12
13 function build_pkg {
14   case $1 in
15     ubuntu)
16       rm -rf ${DIR}/repositories/ubuntu; mkdir -p ${DIR}/repositories/ubuntu
17       rm -rf ${DIR}/build; mkdir -p ${DIR}/build; cd ${DIR}/build;
18       git clone https://github.com/openstack/collectd-ceilometer-plugin
19       cd  collectd-ceilometer-plugin
20       git checkout 6c7cb6adf86fcaa6028ca42867ddcb0582111ab1
21       tar cfvz ${DIR}/repositories/ubuntu/collectd-ceilometer.tgz . --exclude=collectd-ceilometer.tgz
22
23       cd ${DIR}/build; ../build-collectd.sh
24       cp *.deb ${DIR}/repositories/ubuntu
25
26       rm -rf ${DIR}/build
27       ;;
28     *) echo "Not supported system"; exit 1;;
29   esac
30 }
31
32 for system in $BUILD_FOR
33 do
34   build_pkg $system
35 done