Sha256: 45d3b9cb9a1015d84c8cff022cce3eccee069abf6de715c782c9c89378804476

Contents?: true

Size: 509 Bytes

Versions: 1

Compression:

Stored size: 509 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

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/providers/virtualbox/action/clear_forwarded_ports.rb