Sha256: ae04fa137ddf3c852232742c51bff3ea9bb8029bc23a74c12b466a830fa20ea3
Contents?: true
Size: 1.26 KB
Versions: 11
Compression:
Stored size: 1.26 KB
Contents
require 'vagrant/util/scoped_hash_override' module VagrantPlugins module Parallels module Util module CompileForwardedPorts include Vagrant::Util::ScopedHashOverride # This method compiles the forwarded ports into {ForwardedPort} # models. def compile_forwarded_ports(config) mappings = {} config.vm.networks.each do |type, options| next unless type == :forwarded_port guest_port = options[:guest] guest_ip = options[:guest_ip] host_port = options[:host] host_ip = options[:host_ip] protocol = options[:protocol] || 'tcp' options = scoped_hash_override(options, :parallels) id = options[:id] # If the forwarded port was marked as disabled, ignore. next if options[:disabled] # Temporary disable automatically pre-configured forwarded ports # for SSH, since it is working not so well [GH-146] next if id == 'ssh' mappings[host_port.to_s + protocol.to_s] = Model::ForwardedPort.new(id, host_port, guest_port, host_ip, guest_ip, **options) end mappings.values end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems