summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/librdkafka-2.1.0/packaging/cp/verify-deb.sh
blob: 1350d06550e06e93a2ee841f11f43ffd59a62baa (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
#!/bin/bash
#

set -e

cpver=$1
base_url=$2

if [[ -z $base_url ]]; then
    echo "Usage: $0 <cp-base-ver> <base_url>"
    exit 1
fi

apt-get update
apt-get install -y apt-transport-https wget

wget -qO - ${base_url}/deb/${cpver}/archive.key | apt-key add -


cat >/etc/apt/sources.list.d/Confluent.list <<EOF
deb [arch=amd64] $base_url/deb/${cpver} stable main
EOF

apt-get update
apt-get install -y librdkafka-dev gcc

gcc /v/check_features.c -o /tmp/check_features -lrdkafka

/tmp/check_features

# Verify plugins
apt-get install -y confluent-librdkafka-plugins

/tmp/check_features plugin.library.paths monitoring-interceptor