Force shell for FreeBSD

pull/35/head
Emilien Mantel 2018-03-17 14:00:01 +01:00
parent db97fe84f8
commit cb031c4014
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -62,11 +62,11 @@ Vagrant.configure("2") do |config|
end
vms_freebsd.each do |opts|
config.ssh.shell = "csh"
config.vm.base_mac = "080027D14C66"
config.vm.define opts[:name] do |m|
m.vm.box = opts[:box]
m.vm.provider "virtualbox" do |v|
m.vm.provider "virtualbox" do |v, override|
override.ssh.shell = "csh"
v.cpus = 2
v.memory = 512
end