Skip to content
Snippets Groups Projects
Commit 7cfb7a8c authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

Updates InfluxDB installation SHA checksums

parent 59bf56fc
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
echo "----> Installing Tick Stack"
# Define tickstack software versions
INFLUX_VERSION=1.6.5
INFLUX_CHECKSUM=42fede7b497bdf30d4eb5138db218d1add986fca4fce4a8bcd9c7d6dabaf572a
INFLUX_CHECKSUM=9cc44dbf2bc9dece249a89ef433e564074b9535bab714234bdba522c03438a3c
KAPACITOR_VERSION=1.4.1
KAPACITOR_CHECKSUM=eea9b215f241906570eafe3857e1d4c5
......@@ -42,11 +42,11 @@ apt-get install -y wget
# install influx
echo "----> Installing InfluxDB"
wget https://dl.influxdata.com/influxdb/releases/influxdb_${INFLUX_VERSION}_amd64.deb 2> /dev/null
#sha256sum influxdb_${INFLUX_VERSION}_amd64.deb | grep $INFLUX_CHECKSUM > /dev/null
#if [ $? == 1 ]; then
# echo "influx download failed checksum"
# exit 1
#fi
sha256sum influxdb_${INFLUX_VERSION}_amd64.deb | grep $INFLUX_CHECKSUM > /dev/null
if [ $? == 1 ]; then
echo "influx download failed checksum"
exit 1
fi
dpkg -i influxdb_${INFLUX_VERSION}_amd64.deb
# install kapacitor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment