arch/pkg/de-p1st-gnupg/99_import_pubkey.sh
2021-06-15 12:51:49 +02:00

18 lines
491 B
Bash

function import-pubkey() {
# echo to stderr
echo "Importing public key ..." >&2
gpg --import /usr/share/gnupg/94F3D3DDAC22802258FC044B6C47C753F0823002.pub || {
echo "p1st: Error importing pubkey!";
return 1;
}
echo "94F3D3DDAC22802258FC044B6C47C753F0823002:6:" | gpg --import-ownertrust || {
echo "p1st: Error changing trust!"
return 1;
}
}
if ! gpg --export-ownertrust | grep --quiet '^94F3D3DDAC22802258FC044B6C47C753F0823002:6:$'; then
import-pubkey
fi