sshkeyauth 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ssh/key/verifier.rb +1 -1
- metadata +2 -2
data/lib/ssh/key/verifier.rb
CHANGED
|
@@ -163,7 +163,7 @@ module SSH; module Key; class Verifier
|
|
|
163
163
|
end
|
|
164
164
|
|
|
165
165
|
# If relative path, use the homedir.
|
|
166
|
-
if authorized_keys_file.start_with?("/")
|
|
166
|
+
if !authorized_keys_file.start_with?("/")
|
|
167
167
|
if account_info == nil
|
|
168
168
|
@logger.warn("No homedirectory for #{@account} and authorized_keys path is relative, skipping authorized_keys")
|
|
169
169
|
return nil
|