We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installing Elasticsearch 1.2.0 from the deb recipe was failing
because the url https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.0.deb", was throwing a 404 not found
and a newer version, 1.2.1, had been released
the elasticsearch-1.2.1.deb link was working though
So I tried out
apt_repository "elasticsearch" do uri "http://packages.elasticsearch.org/elasticsearch/1.2/debian" components [ "stable main" ] key "http://packages.elasticsearch.org/GPG-KEY-elasticsearch" notifies :run, "execute[apt-get update]", :immediately end package "elasticsearch"
but this always install the latest 1.2.x version ie. 1.2.1
Can we have a version specific apt url ? eg. http://packages.elasticsearch.org/elasticsearch/1.2.0/debian
The text was updated successfully, but these errors were encountered:
package "elasticsearch" do version '1.2.0' end
tried but does not work
Sorry, something went wrong.
The 1.2.0 release has been pulled out because it contained a bug, it should all work with the 1.2.1 version...
ok. thanks
No branches or pull requests
installing Elasticsearch 1.2.0 from the deb recipe was failing
because the url
https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.0.deb",
was throwing a 404 not found
and a newer version, 1.2.1, had been released
the elasticsearch-1.2.1.deb link was working though
So I tried out
but this always install the latest 1.2.x version ie. 1.2.1
Can we have a version specific apt url ?
eg. http://packages.elasticsearch.org/elasticsearch/1.2.0/debian
The text was updated successfully, but these errors were encountered: