Portability to HP-UX.
[exim.git] / release-process / scripts / sign_exim_packages.sh
... / ...
CommitLineData
1#!/bin/sh
2#
3# gpg signs the package set.
4# key used set from env var EXIM_KEY, script defaults that to Nigel's.
5# woe betide the poor sod who does not use a gpg agent, so has
6# to enter their password for every file...
7#
8
9: ${EXIM_KEY:=nigel@exim.org}
10
11for file in *.tar.gz *.tar.bz2
12do
13 gpg --local-user ${EXIM_KEY} --detach-sig --armor $file
14done