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