Update file run_onchange_before_91-configure-gpg.tmpl
This commit is contained in:
parent
52af781c9d
commit
6b2a8833d6
1 changed files with 2 additions and 2 deletions
|
@ -20,13 +20,13 @@ if [ -n "$KEYID" ] && command -v gpg > /dev/null; then
|
||||||
KEYID_TRIMMED="$(echo "$KEYID" | sed 's/^0x//')"
|
KEYID_TRIMMED="$(echo "$KEYID" | sed 's/^0x//')"
|
||||||
if ! gpg --list-secret-keys --keyid-format=long | grep "$KEYID_TRIMMED" > /dev/null; then
|
if ! gpg --list-secret-keys --keyid-format=long | grep "$KEYID_TRIMMED" > /dev/null; then
|
||||||
logg info 'Attempting to download the specified public GPG key (`{{ .user.gpg.id }}`) from public keyservers'
|
logg info 'Attempting to download the specified public GPG key (`{{ .user.gpg.id }}`) from public keyservers'
|
||||||
gpg --recv "$KEYID" --keyserver hkps://keyserver.ubuntu.com || EXIT_CODE=$?
|
gpg --keyserver hkps://pgp.mit.edu --recv "$KEYID" || EXIT_CODE=$?
|
||||||
if [ -n "$EXIT_CODE" ]; then
|
if [ -n "$EXIT_CODE" ]; then
|
||||||
logg warn 'Error downloading public GPG key'
|
logg warn 'Error downloading public GPG key'
|
||||||
logg info 'Retrying after turning on debug mode and using the standard DNS resolver'
|
logg info 'Retrying after turning on debug mode and using the standard DNS resolver'
|
||||||
sudo pkill dirmngr
|
sudo pkill dirmngr
|
||||||
dirmngr --debug-all --daemon --standard-resolver
|
dirmngr --debug-all --daemon --standard-resolver
|
||||||
gpg --recv "$KEYID"
|
gpg --keyserver hkps://pgp.mit.edu --recv "$KEYID"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
logg info 'Key is already in keyring'
|
logg info 'Key is already in keyring'
|
||||||
|
|
Loading…
Reference in a new issue