Fix shell error on vagrant provision

This commit is contained in:
Victor LABORIE 2019-01-16 16:19:09 +01:00 committed by Patrick Marchand
parent 29f4fd6e96
commit 835ccc5729

1
Vagrantfile vendored
View file

@ -9,6 +9,7 @@ load File.expand_path(vagrantfile) if File.exists?(vagrantfile)
Vagrant.configure('2') do |config|
config.vm.synced_folder "./", "/vagrant", type: "rsync", rsync__exclude: [ '.vagrant', '.git' ]
config.ssh.shell="/bin/sh"
config.vm.provider :libvirt do |libvirt|
libvirt.storage :file, :size => '10G', :device => 'vdb'