Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions getuto
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ getuto_refresh() {
done
# We only sign (-> ultimate trust) the keys we originally import, so this is fine and
# just serves as an additional refresh method.
gpg ${QUIET_GPG} --auto-key-locate=clear,nodefault,wkd --locate-key releng@gentoo.org infrastructure@gentoo.org repomirrorci@gentoo.org || true
gpg --with-colons --list-keys | grep "^uid" | cut -d: -f10 | \
sed -n 's/.*<\([^>]\+@[^>]\+\.[^>]\+\)>.*/\1/p' | sort -u | \
xargs gpg ${QUIET_GPG} --auto-key-locate=clear,nodefault,wkd --locate-key || true

touch ${LASTRUNFILE}
else
Expand Down Expand Up @@ -163,7 +165,9 @@ if [[ ! -d ${GNUPGHOME} ]] ; then
done
# We only sign (-> ultimate trust) the keys we originally import, so this is fine and
# just serves as an additional refresh method.
gpg ${QUIET_GPG} --auto-key-locate=clear,nodefault,wkd --locate-key releng@gentoo.org infrastructure@gentoo.org repomirrorci@gentoo.org || true
gpg --with-colons --list-keys | grep "^uid" | cut -d: -f10 | \
sed -n 's/.*<\([^>]\+@[^>]\+\.[^>]\+\)>.*/\1/p' | sort -u | \
xargs gpg ${QUIET_GPG} --auto-key-locate=clear,nodefault,wkd --locate-key || true

# Locally sign all release engineering keys.
for relkeyid in ${myrelkeys} ; do
Expand Down
Loading