You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
475 B
Bash
16 lines
475 B
Bash
#!/bin/sh
|
|
|
|
# Usage: <url> <fpr> <keyring>
|
|
|
|
set -e;
|
|
|
|
readonly keyfile="$(mktemp --dry-run)";
|
|
|
|
mkdir --parents ~/.gnupg;
|
|
chmod "u=rwx,g=,o=" ~/.gnupg;
|
|
|
|
/usr/bin/wget --output-document="$keyfile" -- "$1";
|
|
/usr/bin/gpg2 --dry-run --quiet --import-options import-show --with-colons --import "$keyfile" | awk -F: '$1 == "fpr" { print $10 }' | head --lines=1 | grep --fixed-strings "$2";
|
|
/usr/bin/gpg2 --quiet --no-default-keyring --keyring "$3" --import "$keyfile";
|
|
rm "$keyfile";
|