correct docs (precise32 -> hashicorp/precise32)

This commit is contained in:
rissem 2014-03-14 14:21:11 -07:00
parent 846f942ff0
commit d03fb932a1
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ is a simple edit to the Vagrantfile, which now looks like this:
```ruby ```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "precise32" config.vm.box = "hashicorp/precise32"
config.vm.provision :shell, :path => "bootstrap.sh" config.vm.provision :shell, :path => "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80 config.vm.network :forwarded_port, host: 4567, guest: 80
end end

View File

@ -36,7 +36,7 @@ look like this:
```ruby ```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "precise32" config.vm.box = "hashicorp/precise32"
config.vm.provision :shell, :path => "bootstrap.sh" config.vm.provision :shell, :path => "bootstrap.sh"
end end
``` ```