19 lines
362 B
Ruby
19 lines
362 B
Ruby
module Vagrant
|
|
module Action
|
|
module VM
|
|
class ClearForwardedPorts
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env[:ui].info I18n.t("vagrant.actions.vm.clear_forward_ports.deleting")
|
|
env[:vm].driver.clear_forwarded_ports
|
|
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|