mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
ssh-agent: autoload identities in one go (#7507)
With this PR the ssh-agent plugin loads all identities which are not yet loaded in a single call to ssh-add. If a passphrase is shared between loaded identities it only needs to be entered once. Fixes #7506
This commit is contained in:
parent
2a60385659
commit
9329efd252
1 changed files with 4 additions and 2 deletions
|
@ -13,7 +13,7 @@ function _start_agent() {
|
|||
|
||||
function _add_identities() {
|
||||
local id line sig
|
||||
local -a identities loaded signatures
|
||||
local -a identities loaded not_loaded signatures
|
||||
zstyle -a :omz:plugins:ssh-agent identities identities
|
||||
|
||||
# check for .ssh folder presence
|
||||
|
@ -33,8 +33,10 @@ function _add_identities() {
|
|||
for sig in $signatures; do
|
||||
id="$(cut -f2 <<< $sig)"
|
||||
sig="$(cut -f1 <<< $sig)"
|
||||
[[ ${loaded[(I)$sig]} -le 0 ]] && ssh-add $HOME/.ssh/$id
|
||||
[[ ${loaded[(I)$sig]} -le 0 ]] && not_loaded+="$HOME/.ssh/$id"
|
||||
done
|
||||
|
||||
if [[ -n "$not_loaded" ]] && ssh-add ${^not_loaded}
|
||||
}
|
||||
|
||||
# Get the filename to store/lookup the environment from
|
||||
|
|
Loading…
Reference in a new issue