Sha256: b95dd589c25d63944de8fc7f9d57771b5307c0197dd5b91a66cfb3d677d0fad5
Contents?: true
Size: 596 Bytes
Versions: 47
Compression:
Stored size: 596 Bytes
Contents
module VagrantPlugins module ProviderVirtualBox module Action # Checks that VirtualBox is installed and ready to be used. class CheckVirtualbox def initialize(app, env) @app = app end def call(env) # This verifies that VirtualBox is installed and the driver is # ready to function. If not, then an exception will be raised # which will break us out of execution of the middleware sequence. Driver::Meta.new.verify! # Carry on. @app.call(env) end end end end end
Version data entries
47 entries across 44 versions & 11 rubygems