Sha256: 4a0341fd844f051e6214757a57c072ab6ecea2f95df76f432bd4ef180dc97983
Contents?: true
Size: 399 Bytes
Versions: 19
Compression:
Stored size: 399 Bytes
Contents
module VagrantPlugins module ProviderVirtualBox module Action 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[:machine].provider.driver.clear_forwarded_ports @app.call(env) end end end end end
Version data entries
19 entries across 19 versions & 6 rubygems