forked from Archive/PX4-Autopilot
Switched Vagrant to use static IP
MacOS was having isues with DHCP for NFS shared folder Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
parent
fb3465c117
commit
e2ec4af127
|
@ -26,16 +26,13 @@ Vagrant.configure(2) do |config|
|
|||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
# using a specific IP.
|
||||
# config.vm.network "private_network", ip: "192.168.33.10"
|
||||
config.vm.network "private_network", ip: "192.168.33.10"
|
||||
|
||||
# Create a public network, which generally matched to bridged network.
|
||||
# Bridged networks make the machine appear as another physical device on
|
||||
# your network.
|
||||
# config.vm.network "public_network"
|
||||
|
||||
# Virtualbox requires a private network to use NFS
|
||||
config.vm.network "private_network", type: "dhcp"
|
||||
|
||||
# Share an additional folder to the guest VM. The first argument is
|
||||
# the path on the host to the actual folder. The second argument is
|
||||
# the path on the guest to mount the folder. And the optional third
|
||||
|
|
Loading…
Reference in New Issue