implemented by a simple self-written lockfile. Do not use lockfile(1)
due a bug in debian packages, for details see:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565613
home=/usr/local/src/git
cd $home/irspy/bin || exit 2
logdir=../tmp
+lockfile=../tmp/irspy-update.lock
+
+if [ -f $lockfile ]; then
+ pid=`cat $lockfile`
+ if kill -0 $pid 2>/dev/null; then
+ echo "This script is already running with pid: $pid"
+ exit 1
+ fi
+fi
+echo $$ > $lockfile || exit 2
for i in 0 1 2 3 4 5 6
do
gzip -f $logfile
done
+rm -f $lockfile
+