mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Set shell to sh and networking to host dhcp
Set shell to sh which is present by default on freebsd. Also set networking to host dhcp due to limitations with NFS sharing: https://github.com/hashicorp/vagrant/issues/9063
This commit is contained in:
3
Vagrantfile
vendored
3
Vagrantfile
vendored
@@ -49,9 +49,10 @@ Vagrant.configure(2) do |config|
|
||||
config.vm.define "freebsd", autostart: false, primary: false do |vmCfg|
|
||||
vmCfg.vm.box = FREEBSD_BASE_BOX
|
||||
vmCfg.vm.hostname = "freebsd"
|
||||
vmCfg.ssh.shell = "sh"
|
||||
vmCfg = configureProviders vmCfg,
|
||||
cpus: suggestedCPUCores()
|
||||
|
||||
vmCfg.vm.network "private_network", type: "dhcp"
|
||||
vmCfg.vm.synced_folder '.',
|
||||
'/opt/gopath/src/github.com/hashicorp/nomad',
|
||||
type: "nfs",
|
||||
|
||||
Reference in New Issue
Block a user