mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Fix problems with BSD-VM
- Set a MAC address - Set shell to CSH, as there is no Bash on BSD
This commit is contained in:
parent
2b9a57a8ee
commit
65556eba1b
1 changed files with 7 additions and 0 deletions
7
test-bsd-vm/Vagrantfile
vendored
7
test-bsd-vm/Vagrantfile
vendored
|
@ -38,6 +38,13 @@ Vagrant.configure("2") do |config|
|
||||||
# your network.
|
# your network.
|
||||||
#config.vm.network "public_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
|
# 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 host to the actual folder. The second argument is
|
||||||
# the path on the guest to mount the folder. And the optional third
|
# the path on the guest to mount the folder. And the optional third
|
||||||
|
|
Loading…
Reference in a new issue