2017-03-02 22:42:37 +00:00
|
|
|
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
|
2017-03-02 22:42:37 +00:00
|
|
|
class Version_5_1 < Version_5_0
|
2016-07-13 12:34:25 +00:00
|
|
|
def initialize(uuid)
|
2017-03-19 14:35:46 +00:00
|
|
|
super
|
2016-07-13 12:34:25 +00:00
|
|
|
|
|
|
|
@logger = Log4r::Logger.new("vagrant::provider::virtualbox_5_1")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|