24 lines
558 B
Ruby
24 lines
558 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|