Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
[#36] default download is now specific version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulczar committed Jan 11, 2014
1 parent cf87e13 commit d993f1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Berksfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"ref": "42db58c0e672fbac407245e935406b3d0f3082d6"
},
"bluepill": {
"locked_version": "2.3.0"
"locked_version": "2.3.1"
},
"rsyslog": {
"locked_version": "1.9.0"
"locked_version": "1.10.2"
},
"build-essential": {
"locked_version": "1.4.2"
Expand All @@ -42,13 +42,13 @@
"locked_version": "1.1.12"
},
"runit": {
"locked_version": "1.2.0"
"locked_version": "1.4.0"
},
"dmg": {
"locked_version": "2.0.0"
"locked_version": "2.0.8"
},
"windows": {
"locked_version": "1.10.0"
"locked_version": "1.11.0"
},
"chef_handler": {
"locked_version": "1.1.4"
Expand Down
3 changes: 3 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ Vagrant.configure("2") do |config|
curl -s -XPOST "http://localhost:9200/${INDEX}/test/" -d '{ "@timestamp" : "'${TIMESTAMP}'", "message" : "I am not a real log" }'
FAKELOGSTASH

config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.network "forwarded_port", guest: 9200, host: 9200

# Ubuntu 12.04 Config
config.vm.define :ubuntu1204 do |ubuntu1204|
ubuntu1204.vm.hostname = "ubuntu1204"
Expand Down
4 changes: 2 additions & 2 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
default['kibana']['git']['branch'] = "master"
default['kibana']['git']['type'] = "sync" # checkout | sync
default['kibana']['file']['type'] = "zip" # zip
default['kibana']['file']['url'] = "http://download.elasticsearch.org/kibana/kibana/kibana-latest.zip"
default['kibana']['file']['checksum'] = "89c6461f12664950d816d53757bec57af703d12e27c2248c68cdeeec1b02ce2e" # sha256 ( shasum -a 256 FILENAME )
default['kibana']['file']['url'] = "https://download.elasticsearch.org/kibana/kibana/kibana-3.0.0milestone4.tar.gz"
default['kibana']['file']['checksum'] = "3ebaac69439aa1925c7918e008978b8424840f3bd3910379d4f2bcf5fdfd2118" # sha256 ( shasum -a 256 FILENAME )
default['kibana']['webserver'] = "nginx"
default['kibana']['install_path'] = "/opt"
default['kibana']['install_dir'] = "#{node['kibana']['install_path']}/kibana"
Expand Down

0 comments on commit d993f1a

Please sign in to comment.