From c29d56987d44169e63345012c6532436a643b63b Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Tue, 25 Nov 2003 01:28:26 +0000 Subject: modifed to work with the new gensync --- db-unstable | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'db-unstable') diff --git a/db-unstable b/db-unstable index c6471ef..e090c88 100755 --- a/db-unstable +++ b/db-unstable @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: db-unstable,v 1.7 2003/10/12 18:42:55 judd Exp $ +# $Id: db-unstable,v 1.8 2003/11/25 01:28:26 judd Exp $ uid=`id -u` TMPDIR="/tmp/archpkg.$uid" @@ -11,6 +11,10 @@ if [ -f /tmp/.repolck.$repoid ]; then echo "error: db generation is already in progress (started by $owner)" exit 1 fi +if [ -d /tmp/.gensync ]; then + echo "error: someone else is currently running gensync!" + exit 1 +fi # lock touch /tmp/.repolck.$repoid @@ -25,7 +29,7 @@ mkdir $TMPDIR; [ $? -gt 0 ] && exit 1 echo "==> Generating Pacman Database for UNSTABLE..." >&2 cd $TMPDIR CVS_RSH=ssh CVSROOT=:ext:cvs.archlinux.org:/home/cvs-unstable cvs -q export -r CURRENT unstable -/usr/bin/gensync $TMPDIR/unstable $TMPDIR/unstable.db.tar.gz +/usr/bin/gensync $TMPDIR/unstable $TMPDIR/unstable.db.tar.gz /home/ftp/unstable [ -f $TMPDIR/unstable.db.tar.gz ] && mv -f $TMPDIR/unstable.db.tar.gz /home/ftp/unstable cd $TMPDIR/unstable && /arch/pkgdb 3 -- cgit v1.2.3-24-g4f1b