Skip to content
Snippets Groups Projects
Commit 16163081 authored by Rowan Powell's avatar Rowan Powell
Browse files

Added defensive programming for clmc agent and service installs

parent 2439620d
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,11 @@ if [ ! -f $TELEGRAF_SERVICE_CONF_FILE ]; then ...@@ -52,6 +52,11 @@ if [ ! -f $TELEGRAF_SERVICE_CONF_FILE ]; then
fi fi
wget https://dl.influxdata.com/telegraf/releases/telegraf_1.3.2-1_amd64.deb wget https://dl.influxdata.com/telegraf/releases/telegraf_1.3.2-1_amd64.deb
sha1sum telegraf_1.3.2-1_amd64.deb | grep '73794cc2986fef7c81cfff8bc638cd84d6629da8' &> /dev/null
if [ $? == 1 ]; then
echo "telegraf download failed sha1sum check"
exit
fi
dpkg -i telegraf_1.3.2-1_amd64.deb dpkg -i telegraf_1.3.2-1_amd64.deb
# Copy configuration # Copy configuration
......
...@@ -30,14 +30,29 @@ apt-get -y install python ...@@ -30,14 +30,29 @@ apt-get -y install python
# install influx # install influx
wget https://dl.influxdata.com/influxdb/releases/influxdb_1.2.4_amd64.deb wget https://dl.influxdata.com/influxdb/releases/influxdb_1.2.4_amd64.deb
sha1sum influxdb_1.2.4_amd64.deb | grep 'e77522b65a582787b0d61b90d355284bb2683258' &> /dev/null
if [ $? == 1 ]; then
echo "influx download failed sha1sum check"
exit
fi
dpkg -i influxdb_1.2.4_amd64.deb dpkg -i influxdb_1.2.4_amd64.deb
# install kapacitor # install kapacitor
wget https://dl.influxdata.com/kapacitor/releases/kapacitor_1.3.1_amd64.deb wget https://dl.influxdata.com/kapacitor/releases/kapacitor_1.3.1_amd64.deb
sha1sum kapacitor_1.3.1_amd64.deb | grep '5ae1ead9904ea651e72b181848c2e84338eb88b4' &> /dev/null
if [ $? == 1 ]; then
echo "Kapacitor download failed sha1sum check"
exit
fi
dpkg -i kapacitor_1.3.1_amd64.deb dpkg -i kapacitor_1.3.1_amd64.deb
# install Chronograf # install Chronograf
wget https://dl.influxdata.com/chronograf/releases/chronograf_1.3.3.0_amd64.deb wget https://dl.influxdata.com/chronograf/releases/chronograf_1.3.3.0_amd64.deb
sha1sum chronograf_1.3.3.0_amd64.deb | grep '9b567598c078ba1ad73dd587d7f32163e0886471' &> /dev/null
if [ $? == 1 ]; then
echo "Chronograf download failed sha1sum check"
exit
fi
dpkg -i chronograf_1.3.3.0_amd64.deb dpkg -i chronograf_1.3.3.0_amd64.deb
systemctl start influxdb systemctl start influxdb
......
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