chef-boneyard / em-winrm

DEPRECATED: EventMachine based, asynchronous parallel client for Windows Remote Management (WinRM).
Apache License 2.0
12 stars 25 forks source link

Basic Auth was always enabled #4

Closed pmorton closed 12 years ago

pmorton commented 12 years ago

@options[:basic_auth_only] = @options.delete(:basic_auth_only) || true will always evaluate to true.

Instead, I am only overwriting the value if it has not already been defined.

schisamo commented 12 years ago

@pmorton good catch man!