mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Style
This commit is contained in:
parent
01369342db
commit
fc8e97cd89
1 changed files with 7 additions and 3 deletions
|
|
@ -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 a new issue