diff --git a/qa/config/platforms.json b/qa/config/platforms.json index fcf65d960..3556b418c 100644 --- a/qa/config/platforms.json +++ b/qa/config/platforms.json @@ -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 }, diff --git a/qa/sys/debian/user_bootstrap.sh b/qa/sys/debian/user_bootstrap.sh index 8d9fcb70c..a99d4ff05 100644 --- a/qa/sys/debian/user_bootstrap.sh +++ b/qa/sys/debian/user_bootstrap.sh @@ -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 diff --git a/qa/sys/redhat/user_bootstrap.sh b/qa/sys/redhat/user_bootstrap.sh index db964babc..4713b3f5c 100644 --- a/qa/sys/redhat/user_bootstrap.sh +++ b/qa/sys/redhat/user_bootstrap.sh @@ -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 diff --git a/qa/sys/suse/user_bootstrap.sh b/qa/sys/suse/user_bootstrap.sh index 77653c4e9..be22af8b0 100644 --- a/qa/sys/suse/user_bootstrap.sh +++ b/qa/sys/suse/user_bootstrap.sh @@ -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