blob: 29855312420c3b010b0821b06258e3e3d81b2584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
# Script to create/update Knot Resolver PGP keyring
set -o errexit -o nounset
keys=(
'B6006460B60A80E782062449E747DF1F9575A3AA' # vladimir.cunat@nic.cz
'3057EE9A448F362D74205A779AB120DA0A76F6DE' # ales.mrazek@nic.cz
# '4A8BA48C2AED933BD495C509A1FBA5F7EF8C4869' # tomas.krizek@nic.cz expired 2022-03-31
)
outfile="kresd-keyblock.asc"
url="https://secure.nic.cz/files/knot-resolver/kresd-keyblock.asc"
keyring="$(mktemp -d)"
keyring_import="$(mktemp -d)"
published="$(mktemp)"
cleanup() {
rm -rf "${keyring}"
rm -rf "${keyring_import}"
rm -rf "${published}"
}
trap cleanup EXIT
# obtain keys from keys.openpgp.org
gpg --homedir "${keyring}" -q --keyserver keys.openpgp.org --recv-keys "${keys[@]}"
# export minimal size keys with just the necessary signatures
rm -f "${outfile}"
gpg --homedir "${keyring}" -q --export --export-options export-minimal --armor --output "${outfile}" "${keys[@]}"
# display keys after import
gpg --homedir "${keyring_import}" -q --import "${outfile}"
gpg --homedir "${keyring_import}" -k
echo "Created: ${outfile}"
# check if update of secure.nic.cz keyblock might be needed
curl -sfo "${published}" "${url}"
diff -q "${outfile}" "${published}" &>/dev/null || echo "Generated keyblock differs from ${url}"
|