1997-12-01 20:47:24 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# ---------- pgpsign ---------
|
|
|
|
# 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de>
|
1998-10-10 06:29:27 +02:00
|
|
|
# Wed 16 Sep 1998 23:48:51 WST Anthony Di Pietro <anthony@dino.omen.com.au>
|
|
|
|
# Modified to work with both PGP v2 and PGP v5.
|
2000-11-17 20:06:54 +01:00
|
|
|
if [ -x @@PREFIX@@/bin/pgps ]
|
1998-10-10 06:29:27 +02:00
|
|
|
then
|
|
|
|
pgps -a -t
|
|
|
|
else
|
|
|
|
pgp -fast
|
|
|
|
fi
|