From 5fbda6e4a4cd856146431e32e22de434f03a65bc Mon Sep 17 00:00:00 2001 From: Dave Rawks Date: Tue, 14 Jul 2015 11:43:18 -0700 Subject: [PATCH] Fix issue #1111 - vagrant cluster demo doesn't work Switch demo Vagrantfile to use official debian 7 base box and reflect change in the README --- demo/vagrant-cluster/README.md | 2 +- demo/vagrant-cluster/Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/vagrant-cluster/README.md b/demo/vagrant-cluster/README.md index 3a29b607b9..ebd8f7d6ab 100644 --- a/demo/vagrant-cluster/README.md +++ b/demo/vagrant-cluster/README.md @@ -2,7 +2,7 @@ This demo provides a very simple Vagrantfile that creates two nodes, one at "172.20.20.10" and another at "172.20.20.11". Both are running -a standard Ubuntu 12.04 distribution, and Consul is pre-installed. +a standard Debian 7 distribution, and Consul is pre-installed. To get started, you can start the cluster by just doing: diff --git a/demo/vagrant-cluster/Vagrantfile b/demo/vagrant-cluster/Vagrantfile index 9544a9c8d4..128e19db78 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -20,7 +20,7 @@ SCRIPT VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "hashicorp/precise64" + config.vm.box = "debian/wheezy64" config.vm.provision "shell", inline: $script