From 1c4f33d735578cd9ad5744b671a2f7279028688b Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 17 Oct 2017 11:57:02 +0200 Subject: [PATCH] Do not export attribute user IDs (photo IDs) There's no need to have images in pacman keyring... Signed-off-by: Christian Hesse --- update-keys | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-keys b/update-keys index f81ef1c..442ef72 100755 --- a/update-keys +++ b/update-keys @@ -6,7 +6,7 @@ TMPDIR=$(mktemp -d) trap "rm -rf '${TMPDIR}'" EXIT KEYSERVER='hkp://pool.sks-keyservers.net' -GPG="gpg --quiet --batch --no-tty --no-permission-warning --keyserver "${KEYSERVER}" --homedir ${TMPDIR}" +GPG="gpg --quiet --batch --no-tty --no-permission-warning --export-options no-export-attributes --keyserver "${KEYSERVER}" --homedir ${TMPDIR}" pushd "$(dirname "$0")" >/dev/null