Fix documentation

This commit is contained in:
Shawn Dahlen 2013-04-17 09:57:53 -04:00
parent 9c984b6abb
commit 8a07234527
1 changed files with 12 additions and 9 deletions

View File

@ -40,10 +40,12 @@ to true.
A machine's host name is defined by `config.vm.hostname`. If this is not
set, it falls back to the symbol defining the machine in the Vagrantfile.
In addition, the hostmanager.aliases configuration option can be used to provide aliases for your host names.
In addition, the `hostmanager.aliases` configuration attribute can be used
to provide aliases for your host names.
Example configuration:
```ruby
Vagrant.configure("2") do |config|
config.hostmanager.auto_update = true
config.hostmanager.ignore_private_ip = false
@ -53,6 +55,7 @@ Example configuration:
node.hostmanager.aliases = %w(example-box.localdomain example-box-alias)
end
end
```
Contribute
----------