diff options
author | Norbert Preining <preining@logic.at> | 2022-09-11 00:37:43 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2022-09-11 00:37:43 +0000 |
commit | a84491abba6cbf0805c51431824e7d8e030a0556 (patch) | |
tree | fa87a749701b632f41750f264636e055589af5b5 | |
parent | de6b275f222c0932789350a4d08eda6a7d555b0e (diff) |
gpg expiry update doc: more specific keyserver send message
git-svn-id: svn://tug.org/texlive/trunk@64337 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/gpg/tl-key-extension.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Master/tlpkg/gpg/tl-key-extension.txt b/Master/tlpkg/gpg/tl-key-extension.txt index 53c9b16d522..c8cea8097b4 100644 --- a/Master/tlpkg/gpg/tl-key-extension.txt +++ b/Master/tlpkg/gpg/tl-key-extension.txt @@ -28,9 +28,17 @@ gpg -a --export $KEYID > texlive.asc rm -rf $GNUPGHOME unset GNUPGHOME -gpg --send-keys $KEYID +# send keys +# make sure that .gnupg/dirmngr.conf does NOT contain hkp-cacert lines!!! + +# keys.openpgp.org +gpg --export $KEYID | curl -T - https://keys.openpgp.org +# this will give an URL to associate key with email, visit it! + +# ubuntu key server +gpg --send-key --keyserver hkp://keyserver.ubuntu.com:80 $KEYID + -# also update https://keyserver.ubuntu.com/ and maybe others? # update TeX Live repository export GNUPGHOME=/home/texlive/Master/tlpkg/gpg # wherever svn checkout |