在Vagrantfile设置中启用gui

时间:2013-09-25 19:43:53

标签: vagrant

我尝试在Vegrantfile中使用configure.vm.boot_mode = :gui,但收到此错误:The following settings shouldn't exist: boot_mode

我现在修复它的方式是使用供应商配置(virtualbox):

config.vm.provider "virtualbox" do |v|
    v.gui = true
end

但我想在没有必要时避免特定于供应商的任何事情。与供应商无关的替代方案是什么?有替代boot_mode吗?

1 个答案:

答案 0 :(得分:21)

vm.boot_mode与Vagrant 1.1一起消失了,但是如果将它封装在 V1配置块中,你仍然可以使用它:

Vagrant.configure("1") do |config|
  config.vm.boot_mode = :gui
end

Vagrant.configure("2") do |config|
  # V2 Config...
end