module VagrantPlugins module Skytap module Action # This is based on code from the VirtualBox provider. 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[:host].capability(:clear_forwarded_ports, env[:machine]) @app.call(env) end end end end end