remove patch ot use common file name, wihtout arch, also update ls filename in bootstrap scripts

Fixes #5486
This commit is contained in:
Pere Urbon-Bayes 2016-06-13 15:21:35 +02:00
parent 2d059cd1db
commit b148df70fc
4 changed files with 4 additions and 7 deletions

View file

@ -1,5 +1,5 @@
{
"latest": "5.0.0-alpha2",
"latest": "5.0.0-alpha3",
"platforms" : {
"ubuntu-1204": { "box": "elastic/ubuntu-12.04-x86_64", "type": "debian" },
"ubuntu-1404": { "box": "elastic/ubuntu-14.04-x86_64", "type": "debian", "specific": true },

View file

@ -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

View file

@ -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

View file

@ -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