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
(cherry picked from commit 620ed197f3
)
This commit is contained in:
parent
e997bf4c98
commit
236c6ec214
|
@ -109,14 +109,15 @@ let
|
|||
}
|
||||
|
||||
function importTrust() {
|
||||
local keyId trust
|
||||
keyId="$(gpgKeyId "$1")"
|
||||
local keyIds trust
|
||||
IFS='\n' read -ra keyIds <<< "$(gpgKeyId "$1")"
|
||||
trust="$2"
|
||||
if [[ -n $keyId ]] ; then
|
||||
for id in "''${keyIds[@]}" ; do
|
||||
{ echo trust; echo "$trust"; (( trust == 5 )) && echo y; echo quit; } \
|
||||
| ${gpg} --no-tty --command-fd 0 --edit-key "$keyId"
|
||||
fi
|
||||
| ${gpg} --no-tty --command-fd 0 --edit-key "$id"
|
||||
done
|
||||
}
|
||||
|
||||
'';
|
||||
|
||||
keyringFiles = let
|
||||
|
|
Loading…
Reference in a new issue