vagrant/plugins/hosts/windows/cap/rdp.rb

40 lines
1004 B
Ruby
Raw Normal View History

2014-04-12 22:44:39 +00:00
require "tempfile"
require "vagrant/util/subprocess"
2014-04-12 22:44:39 +00:00
module VagrantPlugins
module HostWindows
module Cap
class RDP
def self.rdp_client(env, rdp_info)
config = nil
opts = {
"drivestoredirect:s" => "*",
"full address:s" => "#{rdp_info[:host]}:#{rdp_info[:port]}",
2014-04-12 22:44:39 +00:00
"prompt for credentials:i" => "1",
"username:s" => rdp_info[:username],
}
# Create the ".rdp" file
config = Tempfile.new(["vagrant-rdp", ".rdp"])
opts.each do |k, v|
config.puts("#{k}:#{v}")
end
config.close
# Build up the args to mstsc
args = [config.path]
if rdp_info[:extra_args]
args = rdp_info[:extra_args] + args
end
2014-04-12 22:44:39 +00:00
# Launch it
Vagrant::Util::Subprocess.execute("mstsc", *args)
2014-04-12 22:44:39 +00:00
ensure
config.close if config
2014-04-12 22:44:39 +00:00
end
end
end
end
end