[Angstrom-devel] Signed feeds?

Graeme Gregory dp at xora.org.uk
Sat Apr 19 00:18:47 CEST 2008


Well signed feeds turns out to be really simply to implement.

I think someone should generate an official Angstrom key in gnupg then
this script will sign the feeds.

-----------------

#! /bin/sh

PACK=`find . -name "Packages"`

for packfile in $PACK; do
        gpg --passphrase "<passphrase>" -a -b $packfile
        mv $packfile.asc $packfile.sig
done

-----------------

So probably just need to add this on the back end of sort.

Got it running on my personal feeds which are using the same sort.sh
as Angstrom.

Graeme




More information about the Angstrom-distro-devel mailing list