Browse Source

Merge pull request #2540 from JohnMaguire/bugfix/2447-delete-public-key-authorized_keys

Fixes #2447 (delete public key from authorized_keys)
tags/v1.21.12.1
Unknwon 9 years ago
parent
commit
32efc3ec0a
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      models/ssh_key.go

+ 8
- 0
models/ssh_key.go View File

@@ -165,6 +165,9 @@ func CheckPublicKeyString(content string) (_ string, err error) {
return "", errors.New("only a single line with a single key please")
}

// remove any unnecessary whitespace now
content = strings.TrimSpace(content)

fields := strings.Fields(content)
if len(fields) < 2 {
return "", errors.New("too less fields")
@@ -374,6 +377,11 @@ func rewriteAuthorizedKeys(key *PublicKey, p, tmpP string) error {
break
}
}

if !isFound {
log.Warn("SSH key %d not found in authorized_keys file for deletion", key.ID)
}

return nil
}



Loading…
Cancel
Save