resolve formatting issues

This commit is contained in:
J Lynn 2015-09-23 13:58:01 +10:00
parent f3215f0ae6
commit f22bfcb8de
1 changed files with 3 additions and 2 deletions

View File

@ -54,11 +54,12 @@ the IP, such as `ifconfig`.
### Using the DHCP Assigned Default Route ### Using the DHCP Assigned Default Route
Some cases require the DHCP assigned default route to be untouched. In these cases one Some cases require the DHCP assigned default route to be untouched. In these cases one
my specify the :use_dhcp_assigned_default_route option. As an example: may specify the `use_dhcp_assigned_default_route` option. As an example:
```ruby ```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.network "public_network", use_dhcp_assigned_default_route: true config.vm.network "public_network",
use_dhcp_assigned_default_route: true
end end
``` ```