diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2017-03-07 22:15:21 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2017-03-08 01:42:00 +0300 |
commit | 65556eba1bfda7458608adad190213e1dc781f4c (patch) | |
tree | da12c923c7818266f9fd6e9858695207b312c5f7 /test-bsd-vm/Vagrantfile | |
parent | 2b9a57a8ee1ba47619c962c7b24a782c6ad9a2e6 (diff) |
Fix problems with BSD-VM
- Set a MAC address
- Set shell to CSH, as there is no Bash on BSD
Diffstat (limited to 'test-bsd-vm/Vagrantfile')
-rw-r--r-- | test-bsd-vm/Vagrantfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test-bsd-vm/Vagrantfile b/test-bsd-vm/Vagrantfile index 441b3c4b..d672c1c1 100644 --- a/test-bsd-vm/Vagrantfile +++ b/test-bsd-vm/Vagrantfile @@ -38,6 +38,13 @@ Vagrant.configure("2") do |config| # your network. #config.vm.network "public_network" + # The BSD base box does not define a MAC address. Whysoever. + config.vm.base_mac = "8AAB4975994A" + + # There is no BASH for root on BSD. We need to set another shell. + # See https://www.freebsd.org/doc/en/articles/linux-users/shells.html + config.ssh.shell = "/bin/csh" + # 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 |