Vagrant box_check_update 错误
Vagrant box_check_update error
我尝试使用 Vagrant
环境。我有 Vagrantfile
和所有其他需求。我在 Ubuntu 12.04.03
上使用 Vagrant 1.4.3
版本。
vagrant up
后出现以下错误。
vm:
* The following settings shouldn't exist: box_check_update
* The box 'ubuntu/vivid64' could not be found.
我检查了我的 Vagrantfile
,发现 config.vm.box_check_update = false
。
Ubuntu/vivid64
在这里:https://atlas.hashicorp.com/ubuntu/boxes/vivid64
config.vm.box_check_update
和config.vm.box = "ubuntu/vivid64"
是vagrant 1.5的特性(见博客公告https://www.vagrantup.com/blog/vagrant-1-5-and-vagrant-cloud.html and https://www.vagrantup.com/blog/feature-preview-vagrant-1-5-boxes-2-0.html)
升级到 Vagrant 1.5(或更好的最新版本),它将 运行 正常。
我尝试使用 Vagrant
环境。我有 Vagrantfile
和所有其他需求。我在 Ubuntu 12.04.03
上使用 Vagrant 1.4.3
版本。
vagrant up
后出现以下错误。
vm:
* The following settings shouldn't exist: box_check_update
* The box 'ubuntu/vivid64' could not be found.
我检查了我的 Vagrantfile
,发现 config.vm.box_check_update = false
。
Ubuntu/vivid64
在这里:https://atlas.hashicorp.com/ubuntu/boxes/vivid64
config.vm.box_check_update
和config.vm.box = "ubuntu/vivid64"
是vagrant 1.5的特性(见博客公告https://www.vagrantup.com/blog/vagrant-1-5-and-vagrant-cloud.html and https://www.vagrantup.com/blog/feature-preview-vagrant-1-5-boxes-2-0.html)
升级到 Vagrant 1.5(或更好的最新版本),它将 运行 正常。