Merge pull request #3222 from rissem/master

website/docs: correct docs (precise32 -> hashicorp/precise32)
This commit is contained in:
Mitchell Hashimoto 2014-03-14 14:25:49 -07:00
commit 8770f9d060
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
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box = "hashicorp/precise32"
config.vm.provision :shell, :path => "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80
end

View File

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