Skip to content

Commit

Permalink
Bump version references
Browse files Browse the repository at this point in the history
  • Loading branch information
armon committed May 18, 2015
1 parent 9a9cc93 commit 8c86fd1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bench/bench-aws.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"sudo mkdir /etc/consul.d",
"sudo apt-get update",
"sudo apt-get install unzip make",
"wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip",
"wget https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip",
"unzip 0.4.1_linux_amd64.zip",
"sudo mv consul /usr/local/bin/consul",
"chmod +x /usr/local/bin/consul"
Expand Down
2 changes: 1 addition & 1 deletion bench/bench.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"mkdir /etc/consul.d",
"apt-get update",
"apt-get install unzip make",
"wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip",
"wget https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip",
"unzip 0.4.1_linux_amd64.zip",
"mv consul /usr/local/bin/consul",
"chmod +x /usr/local/bin/consul"
Expand Down
2 changes: 1 addition & 1 deletion demo/vagrant-cluster/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sudo apt-get install -y unzip curl
echo Fetching Consul...
cd /tmp/
wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip -O consul.zip
wget https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip -O consul.zip
echo Installing Consul...
unzip consul.zip
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sudo apt-get install -y unzip

echo "Fetching Consul..."
cd /tmp
wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip -O consul.zip
wget https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip -O consul.zip

echo "Installing Consul..."
unzip consul.zip >/dev/null
Expand Down
4 changes: 2 additions & 2 deletions terraform/openstack/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ set -e
# Read the address to join from the file we provisioned
JOIN_ADDRS=$(cat /tmp/consul-server-addr | tr -d '\n')

sudo sh -c 'echo "127.0.0.1 consul-node-'$(cat /tmp/consul-server-index)'" >> /etc/hosts'
sudo sh -c 'echo "127.0.0.1 consul-node-'$(cat /tmp/consul-server-index)'" >> /etc/hosts'

echo "Installing dependencies..."
sudo apt-get update -y
sudo apt-get install -y unzip

echo "Fetching Consul..."
cd /tmp
wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip -O consul.zip
wget https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip -O consul.zip

echo "Installing Consul..."
unzip consul.zip >/dev/null
Expand Down
2 changes: 1 addition & 1 deletion website/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set :base_url, "https://www.consul.io/"

activate :hashicorp do |h|
h.version = "0.5.1"
h.version = "0.5.2"
h.bintray_enabled = ENV["BINTRAY_ENABLED"]
h.bintray_repo = "mitchellh/consul"
h.bintray_user = "mitchellh"
Expand Down

0 comments on commit 8c86fd1

Please sign in to comment.