ssh-agent: check if ssh-add -l was successful

This commit is contained in:
Marc Cornellà 2019-09-08 16:07:06 +02:00
parent c44569f06e
commit 101ea87232

View File

@ -12,7 +12,7 @@ function _start_agent() {
} }
function _add_identities() { function _add_identities() {
local id line sig local id line sig lines
local -a identities loaded_sigs loaded_ids not_loaded local -a identities loaded_sigs loaded_ids not_loaded
zstyle -a :omz:plugins:ssh-agent identities identities zstyle -a :omz:plugins:ssh-agent identities identities
@ -32,10 +32,12 @@ function _add_identities() {
fi fi
# get list of loaded identities' signatures and filenames # get list of loaded identities' signatures and filenames
for line in ${(f)"$(ssh-add -l)"}; do if lines=$(ssh-add -l); then
loaded_sigs+=${${(z)line}[2]} for line in ${(f)lines}; do
loaded_ids+=${${(z)line}[3]} loaded_sigs+=${${(z)line}[2]}
done loaded_ids+=${${(z)line}[3]}
done
fi
# add identities if not already loaded # add identities if not already loaded
for id in $identities; do for id in $identities; do