diff options
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rwxr-xr-x | doc/mksamplekeys | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index d415f1662..f1287b11b 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2006-05-23 David Shaw <[email protected]> + + * mksamplekeys: Incorporate new package signature key and minimize + keys when generating samplekeys.asc. + 2006-05-17 Werner Koch <[email protected]> * samplekeys.asc: Added new package signature key and cleaned all diff --git a/doc/mksamplekeys b/doc/mksamplekeys index 2bf8910e8..301ab9432 100755 --- a/doc/mksamplekeys +++ b/doc/mksamplekeys @@ -1,12 +1,12 @@ #/bin/sh # Generate a samplekeys.asc -keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 37D92FFB" +keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 1CE0C630" for i in $keys; do gpg --list-keys $i | awk ' { print " " $0 }' done echo -gpg --export -a $keys +gpg --export-options export-minimal --export -a $keys |