From 0dec6fa13c032a004b5576ba722e9b2032887274 Mon Sep 17 00:00:00 2001 From: Robert James Hernandez Date: Wed, 13 Mar 2019 20:58:25 -0700 Subject: [PATCH] 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 --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 38d39d97b..81e072fd2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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",