#!/bin/sh # # $Cambridge: exim/release-process/scripts/sign_exim_packages.sh,v 1.1 2010/06/03 12:00:38 nm4 Exp $ # # gpg signs the package set. # key used is currently coded into the script # woe betide the poor sod who does not use a gpg agent, so has # to enter their password for every file... # exim_key='nigel@exim.org' for file in *.tar.gz *.tar.bz2 do gpg --local-user ${exim_key} --detach-sig --armor $file done