[ale] PGP / GPG Keysigning Party Reminder... Just 3 days away now.

Jeremy T. Bouse jeremy.bouse at undergrid.net
Tue Dec 6 13:20:48 EST 2011


On 12/06/2011 12:36 PM, Michael B. Trausch wrote:
> On 12/06/2011 12:25 PM, Michael B. Trausch wrote:
>> On 12/06/2011 11:51 AM, Michael H. Warfield wrote:
>>> Understand, though.  We have one key on there that was "delete" by me
>>> but it turns out it's still in the keyring, it just doesn't show in the
>>> listing on the site.  You'll want to filter out DE2F3D50.  Scott
>>> regenerated a new key and that one is not valid.
>>
>> My method is pulling from the HTML, using BeautifulSoup, so if it's not
>> in the HTML it won't be in my key list.
>>
>> 	--- MIke
>>
> 
> If anyone is interested, here is the (rather ugly, ATM) script that I'm
> using.
> 

	Likewise, with the installation of the signing-party package on any
Ubuntu or Debian system you can run the script I'm using... There's no
real magic or anything just utilizing tools that already exist for
coordinating key signing parties.

#!/bin/bash

DEST=server.tld:/path/to/dir
EXCLUSION="DE2F3D50"
GPGTMP=/tmp/gpg$$
export GNUPGHOME=$GPGTMP

mkdir $GPGTMP
chmod 700 $GPGTMP
cd $GPGTMP
curl -so pubring.asc "http://biglumber.com/x/web?keyring=4254;download=1"

gpg --quiet --import pubring.asc

gpg -k |grep ^pub |awk '{ print $2 }' |awk -F/ '{ print $2 }' | \
grep -v $EXCLUSION | \
gpgparticipants - ksp-ale11.txt "20111208 1930" \
"Atlanta Linux Enthusiasts <ale at ale.org>" "ALE Key Signing Party 2011"

unset GNUPGHOME

scp $GPGTMP/ksp-ale11.txt $GPGTMP/pubring.asc $DEST

rm -rf $GPGTMP


More information about the Ale mailing list