forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove patch ot use common file name, wihtout arch, also update ls fi…
…lename in bootstrap scripts Fixes elastic#5486
- Loading branch information
Pere Urbon-Bayes
committed
Jun 15, 2016
1 parent
2d059cd
commit b148df7
Showing
4 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
VERSION=`cat /vagrant/config/platforms.json | grep latest | cut -d":" -f2 | sed 's/["\|,| ]//g'` | ||
LOGSTASH_FILENAME="logstash-${VERSION}_all.deb" | ||
LOGSTASH_FILENAME="logstash-${VERSION}.deb" | ||
wget -q https://download.elastic.co/logstash/logstash/packages/debian/$LOGSTASH_FILENAME | ||
mv $LOGSTASH_FILENAME "logstash-${VERSION}.deb" # necessary patch until new version with the standard name format are released |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
VERSION=`cat /vagrant/config/platforms.json | grep latest | cut -d":" -f2 | sed 's/["\|,| ]//g'` | ||
LOGSTASH_FILENAME="logstash-${VERSION}.noarch.rpm" | ||
LOGSTASH_FILENAME="logstash-${VERSION}.rpm" | ||
wget -q https://download.elastic.co/logstash/logstash/packages/centos/$LOGSTASH_FILENAME | ||
mv $LOGSTASH_FILENAME "logstash-${VERSION}.rpm" # necessary patch until new version with the standard name format are released |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/usr/bin/env bash | ||
VERSION=`cat /vagrant/config/platforms.json | grep latest | cut -d":" -f2 | sed 's/["\|,| ]//g'` | ||
LOGSTASH_FILENAME="logstash-${VERSION}.noarch.rpm" | ||
LOGSTASH_FILENAME="logstash-${VERSION}.rpm" | ||
wget -q https://download.elastic.co/logstash/logstash/packages/centos/$LOGSTASH_FILENAME | ||
mv $LOGSTASH_FILENAME "logstash-${VERSION}.rpm" # necessary patch until new version with the standard name format are released |