#! /bin/sh
# consider making snapshot of FreeSwan code

who=mcr

. ~build/freeswan-regress-env.sh

umask 022

cd ~build/WANTSNAP

if test ! -f dosnap
then
	exit 0
fi

if test -f doingsnap
then
	echo "snapshot already in progress" | mail -s "snapshot averted" $who
	exit 0
fi

echo $$ >doingsnap
sort -u dosnap >/tmp/snap$$
echo === >>/tmp/snap$$
if ~build/bin/mksnap >>/tmp/snap$$ 2>&1
then
	rm -f dosnap
fi
mail -s "snapshot report $reqd" $who </tmp/snap$$
rm -f /tmp/snap$$ doingsnap

