Sha256: 70b3a3399010c3687e9d149b1186bdbebf6c814397f1001411b1e343b7192cb2
Contents?: true
Size: 362 Bytes
Versions: 40
Compression:
Stored size: 362 Bytes
Contents
module Vagrant module Action module VM 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[:vm].driver.clear_forwarded_ports @app.call(env) end end end end end
Version data entries
40 entries across 40 versions & 6 rubygems