Style
This commit is contained in:
parent
01369342db
commit
fc8e97cd89
|
@ -9,9 +9,13 @@ module VagrantPlugins
|
|||
class RDP
|
||||
def self.rdp_client(env, rdp_info)
|
||||
# Setup password
|
||||
cmdKeyArgs = ["/add:#{rdp_info[:host]}:#{rdp_info[:port]}", "/user:#{rdp_info[:username]}", "/pass:#{rdp_info[:password]}"]
|
||||
Vagrant::Util::Subprocess.execute("cmdkey", *cmdKeyArgs )
|
||||
|
||||
cmdKeyArgs = [
|
||||
"/add:#{rdp_info[:host]}:#{rdp_info[:port]}",
|
||||
"/user:#{rdp_info[:username]}",
|
||||
"/pass:#{rdp_info[:password]}",
|
||||
]
|
||||
Vagrant::Util::Subprocess.execute("cmdkey", *cmdKeyArgs)
|
||||
|
||||
# Build up the args to mstsc
|
||||
args = ["/v:#{rdp_info[:host]}:#{rdp_info[:port]}"]
|
||||
if rdp_info[:extra_args]
|
||||
|
|
Loading…
Reference in New Issue