Sha256: 1731f27f9d25b9ba0efa14a0e6de7151d42e3b054796302a0265ec5c4392a063
Contents?: true
Size: 928 Bytes
Versions: 1
Compression:
Stored size: 928 Bytes
Contents
module VagrantPlugins module DockerProvider module Action class HostMachinePortWarning def initialize(app, env) @app = app end def call(env) if !env[:machine].provider.host_vm? return @app.call(env) end # If we have forwarded ports, then notify the user that they # won't be immediately available unless a private network # is created. if has_forwarded_ports?(env[:machine]) env[:machine].ui.warn(I18n.t( "docker_provider.host_machine_forwarded_ports")) end @app.call(env) end protected def has_forwarded_ports?(machine) machine.config.vm.networks.each do |type, _| return true if type == :forwarded_port end false 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/docker/action/host_machine_port_warning.rb |