Sha256: 1c0930c29dd7b29aa16aafe125b6280031b3fddb8232bbb9ed009cd892c784b6
Contents?: true
Size: 489 Bytes
Versions: 63
Compression:
Stored size: 489 Bytes
Contents
module VagrantPlugins module ProviderVirtualBox module Action class ClearForwardedPorts def initialize(app, env) @app = app end def call(env) if !env[:machine].provider.driver.read_forwarded_ports.empty? env[:ui].info I18n.t("vagrant.actions.vm.clear_forward_ports.deleting") env[:machine].provider.driver.clear_forwarded_ports end @app.call(env) end end end end end
Version data entries
63 entries across 56 versions & 8 rubygems