Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flame-clmc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flame
flame-clmc
Commits
16163081
Commit
16163081
authored
7 years ago
by
Rowan Powell
Browse files
Options
Downloads
Patches
Plain Diff
Added defensive programming for clmc agent and service installs
parent
2439620d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/clmc-agent/install.sh
+5
-0
5 additions, 0 deletions
scripts/clmc-agent/install.sh
scripts/clmc-service/install.sh
+15
-0
15 additions, 0 deletions
scripts/clmc-service/install.sh
with
20 additions
and
0 deletions
scripts/clmc-agent/install.sh
+
5
−
0
View file @
16163081
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
scripts/clmc-service/install.sh
+
15
−
0
View file @
16163081
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment