diff options
author | Karl Berry <karl@freefriends.org> | 2018-09-03 17:46:06 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-09-03 17:46:06 +0000 |
commit | 5b6d00a6ba4e9c36af0332f236ce06f7fe2d4c86 (patch) | |
tree | 610c0a3926869363fa402a545b79e89fdf663265 /Master/tlpkg | |
parent | e92f337e45b54c32ad4c6b8717f2c5427e88381b (diff) |
doc, wording
git-svn-id: svn://tug.org/texlive/trunk@48560 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-try-install | 4 | ||||
-rw-r--r-- | Master/tlpkg/doc/gpg-extend-key-expiry-howto.txt | 19 |
2 files changed, 20 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tl-try-install b/Master/tlpkg/bin/tl-try-install index 7439427d4ab..bc940d71efa 100755 --- a/Master/tlpkg/bin/tl-try-install +++ b/Master/tlpkg/bin/tl-try-install @@ -1,4 +1,4 @@ -#!/bin/sh -vx +#!/bin/sh -x # $Id$ # Try a TL installation with various profiles into /tmp/ki. Public domain. @@ -23,7 +23,7 @@ PATH=/usr/local/bin:/usr/bin:/bin # /usr/local/bin for good perl on tug thisrel=/usr/local/texlive/`date +%Y` # not necessarily, but whatever prevrel=/usr/local/texlive/`expr "$(date +%Y)" - 1` -pro=--profile=${1-Master/tlpkg/dev/profiles/TLinfra.pro} #infra min ... full +pro=--profile=${1-$Master/tlpkg/dev/profiles/TLinfra.pro} #infra min ... full exec time $Master/install-tl $pro exec time $lp/install-tl $pro exec time $lp/install-tl $pro --repo ftp://ftp.cstug.cz/pub/tex/local/tlpretest diff --git a/Master/tlpkg/doc/gpg-extend-key-expiry-howto.txt b/Master/tlpkg/doc/gpg-extend-key-expiry-howto.txt index 3a755d27e5a..913dc6a5b6f 100644 --- a/Master/tlpkg/doc/gpg-extend-key-expiry-howto.txt +++ b/Master/tlpkg/doc/gpg-extend-key-expiry-howto.txt @@ -1,17 +1,34 @@ +$Id$ +Public domain. + + Steps to extend TL signing key ============================== +This needs to happen every year in August (--list-keys for actual expiration). * get main key dir from USB stick + * set GNUPGHOME to the respective directory + * gpg1 --edit-key 0x0D5E5D9106BAB6BC key 2 # select signing sub key expire 1y save + * export signing key gpg1 --export 0x0D5E5D9106BAB6BC > tmpkey + * send to key server - gpg1 --keyserver hkp://pool.sks-keyservers.net --send-key 06BAB6B + gpg1 --keyserver hkp://pool.sks-keyservers.net \ + --send-key 0x0D5E5D9106BAB6BC + * import into TL subversion gpg1 --homedir .../Master/tlpkg/gpg --import tmpkey + +* on the TL side + gpg --homedir ~texlive/etc \ + --keyserver hkp://pool.sks-keyservers.net \ + --recv-key 0x0D5E5D9106BAB6BC + * after testing push out tlcritical |