Sha256: 5befdb8a5ed4b0d66d41aa29b429b2588f01f7d64f908ab3edc38e1851b485cb
Contents?: true
Size: 917 Bytes
Versions: 1
Compression:
Stored size: 917 Bytes
Contents
require "pathname" require "tmpdir" require "vagrant/util/subprocess" module VagrantPlugins module HostDarwin module Cap class RDP def self.rdp_client(env, rdp_info) opts = { "drivestoredirect:s" => "*", "full address:s" => "#{rdp_info[:host]}:#{rdp_info[:port]}", "prompt for credentials:i" => "1", "username:s" => rdp_info[:username], } # Create the ".rdp" file config_path = Pathname.new(Dir.tmpdir).join( "vagrant-rdp-#{Time.now.to_i}-#{rand(10000)}.rdp") config_path.open("w+") do |f| opts.each do |k, v| f.puts("#{k}:#{v}") end end # Launch it Vagrant::Util::Subprocess.execute("open", config_path.to_s) 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/hosts/darwin/cap/rdp.rb |