vaguerent/plugins/providers/virtualbox/action/clear_shared_folders.rb
2012-08-14 21:12:41 -07:00

18 lines
315 B
Ruby

module VagrantPlugins
module ProviderVirtualBox
module Action
class ClearSharedFolders
def initialize(app, env)
@app = app
end
def call(env)
env[:machine].provider.driver.clear_shared_folders
@app.call(env)
end
end
end
end
end