vagrant/plugins/providers/virtualbox/driver/version_5_2.rb

17 lines
357 B
Ruby
Raw Normal View History

2017-09-08 19:00:17 +00:00
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