blob: ffb4934748ff2342ba3afb02189cca3ecb82bd2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
# Add here any the actions which are required before plugin build
# like packages building, packages downloading from mirrors and so on.
# The script should return 0 if there were no errors.
#!/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
rm -rf ${DIR}/build; mkdir -p ${DIR}/build; cd ${DIR}/build;
git clone https://github.com/openstack/collectd-ceilometer-plugin
cd collectd-ceilometer-plugin
git checkout 3a4a1087566d1f9e8dd2d8d2e0608cb975942446
cat << EOF > collectd_ceilometer/__init__.py
"""Collectd Ceilometer plugin implementation"""
EOF
tar cfvz ${DIR}/repositories/ubuntu/collectd-ceilometer.tgz . --exclude=collectd-ceilometer.tgz
cd ${DIR}/build; ../build-collectd.sh
cp *.deb ${DIR}/repositories/ubuntu
rm -rf ${DIR}/build
;;
*) echo "Not supported system"; exit 1;;
esac
}
for system in $BUILD_FOR
do
build_pkg $system
done
|