gpg: fix handling of multiple public keys
When processing `publicKeys` entries, handle entries that contain multiple public keys (i.e. gpg --show-key returns multiple `pub` lines) properly, setting the trust level for each key. PR #2897
This commit is contained in:
parent
8ab155c61f
commit
620ed197f3
|
@ -109,14 +109,15 @@ let
|
||||||
}
|
}
|
||||||
|
|
||||||
function importTrust() {
|
function importTrust() {
|
||||||
local keyId trust
|
local keyIds trust
|
||||||
keyId="$(gpgKeyId "$1")"
|
IFS='\n' read -ra keyIds <<< "$(gpgKeyId "$1")"
|
||||||
trust="$2"
|
trust="$2"
|
||||||
if [[ -n $keyId ]] ; then
|
for id in "''${keyIds[@]}" ; do
|
||||||
{ echo trust; echo "$trust"; (( trust == 5 )) && echo y; echo quit; } \
|
{ echo trust; echo "$trust"; (( trust == 5 )) && echo y; echo quit; } \
|
||||||
| ${gpg} --no-tty --command-fd 0 --edit-key "$keyId"
|
| ${gpg} --no-tty --command-fd 0 --edit-key "$id"
|
||||||
fi
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
keyringFiles = let
|
keyringFiles = let
|
||||||
|
|
Loading…
Reference in a new issue