I've tried using configure.vm.boot_mode = :gui
in Vegrantfile, but got this error: The following settings shouldn't exist: boot_mode
the way I fixed it now is by using vendor configuration (virtualbox):
config.vm.provider "virtualbox" do |v|
v.gui = true
end
but I would like to avoid vendor-specific anything when not necessary. what vendor-agnostic alternative is there to this? is there a replacement to boot_mode
?