Vagrant has detected that you have a version of VirtualBox installed that is not supported.

https://github.com/hashicorp/vagrant/commit/7d73af5637de41f1e53b8f1ef2ea9baf76842dfb

在这里插入图片描述

在这里插入图片描述

require File.expand_path("../version_5_1", __FILE__)

module VagrantPlugins
  module ProviderVirtualBox
    module Driver
      # Driver for VirtualBox 5.2.x
      class Version_5_2 < Version_5_1
        def initialize(uuid)
          super

          @logger = Log4r::Logger.new("vagrant::provider::virtualbox_5_2")
        end
      end
    end
  end
end

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_26249609/article/details/85272469