shell.rb: fix precedence
This commit is contained in:
parent
2f52a9c15c
commit
52d8fddf38
@ -45,7 +45,7 @@ module VagrantPlugins
|
||||
@logger.debug("initializing WinRMShell")
|
||||
|
||||
@host = host
|
||||
@port = options[:port] || options[:ssl] ? 5986 : 5985
|
||||
@port = options[:port] || (options[:ssl] ? 5986 : 5985)
|
||||
@username = username
|
||||
@password = password
|
||||
@timeout_in_seconds = options[:timeout_in_seconds] || 60
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user