0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-17 04:16:52 +02:00

feat(ssh-agent): add keys regardless of filename (#12741)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
Щанников Михаил 2024-10-10 14:39:07 +03:00 committed by GitHub
parent 61bacd95b2
commit d2d5155d41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,13 +39,16 @@ function _add_identities() {
return return
fi fi
# add default keys if no identities were set up via zstyle # If no keys specified in zstyle, add default keys.
# this is to mimic the call to ssh-add with no identities # Mimics calling ssh-add with no arguments.
if [[ ${#identities} -eq 0 ]]; then if [[ ${#identities[@]} -eq 0 ]]; then
# key list found on `ssh-add` man page's DESCRIPTION section # Iterate over files in .ssh folder.
for id in id_rsa id_dsa id_ecdsa id_ed25519 id_ed25519_sk identity; do for file in "$HOME/.ssh"/*; do
# check if file exists # Check if file is a regular file and starts with "-----BEGIN OPENSSH PRIVATE KEY-----".
[[ -f "$HOME/.ssh/$id" ]] && identities+=($id) if [[ -f "$file" && $(command head -n 1 "$file") =~ ^-----BEGIN\ OPENSSH\ PRIVATE\ KEY----- ]]; then
# Add filename (without path) to identities array.
identities+=("${file##*/}")
fi
done done
fi fi