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

17 lines
357 B
Ruby
Raw Normal View History

require File.expand_path("../version_5_0", __FILE__)
2016-07-13 12:34:25 +00:00
module VagrantPlugins
module ProviderVirtualBox
module Driver
# Driver for VirtualBox 5.1.x
class Version_5_1 < Version_5_0
2016-07-13 12:34:25 +00:00
def initialize(uuid)
super
2016-07-13 12:34:25 +00:00
@logger = Log4r::Logger.new("vagrant::provider::virtualbox_5_1")
end
end
end
end
end