Skip to content

Commit

Permalink
remove patch ot use common file name, wihtout arch, also update ls fi…
Browse files Browse the repository at this point in the history
…lename in bootstrap scripts

Fixes elastic#5486
  • Loading branch information
Pere Urbon-Bayes committed Jun 15, 2016
1 parent 2d059cd commit b148df7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion qa/config/platforms.json
Original file line number Diff line number Diff line change
@@ -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 },
Expand Down
3 changes: 1 addition & 2 deletions qa/sys/debian/user_bootstrap.sh
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
3 changes: 1 addition & 2 deletions qa/sys/redhat/user_bootstrap.sh
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
3 changes: 1 addition & 2 deletions qa/sys/suse/user_bootstrap.sh
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

0 comments on commit b148df7

Please sign in to comment.