mirror of https://github.com/status-im/consul.git
Merge pull request #1112 from drawks/iss-1111
Fix issue #1111 - vagrant cluster demo doesn't work
This commit is contained in:
commit
5339ee6cd9
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue