неизвестный размер диска в бродячей конфигурации - PullRequest
0 голосов
/ 16 июня 2020

Я не установил плагин с помощью команды vagrant plugin install vagrant-disksize

 Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://vagrantcloud.com/search.
  config.vm.box = "gusztavvargadr/windows-server"
  config.disksize.size="30GB"
  config.vm.box.name="windows_server"

Но после vagrant up отображается следующая ошибка:

 There are errors in the configuration of this machine. Please fix
the following errors and try again:

Vagrant:
* Unknown configuration section 'disksize'.

Что будет причиной для ошибка

...