diff options
Diffstat (limited to 'db-arch')
-rwxr-xr-x | db-arch | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,9 +1,9 @@ #!/bin/bash -# $Id: db-arch,v 1.13 2004/01/06 02:50:53 judd Exp $ +# $Id: db-arch,v 1.14 2004/04/01 21:09:13 judd Exp $ uid=`id -u` -TMPDIR="/tmp/archpkg.$uid" repoid=1 +TMPDIR="/tmp/archpkg.$repoid.$uid" cleanup() { rm -rf $TMPDIR @@ -38,6 +38,11 @@ mkdir /tmp/archpkg.$uid; [ $? -gt 0 ] && exit 1 echo "==> Generating Pacman Database for CURRENT..." >&2 cd $TMPDIR CVS_RSH=ssh CVSROOT=:ext:cvs.archlinux.org:/home/cvs-arch cvs -q export -r CURRENT -f arch/build +# check again +if [ -d /tmp/.gensync ]; then + echo "error: someone else is currently running gensync!" + exit 1 +fi /usr/bin/gensync $TMPDIR/arch/build $TMPDIR/current.db.tar.gz /home/ftp/current [ -f $TMPDIR/current.db.tar.gz ] && mv -f $TMPDIR/current.db.tar.gz /home/ftp/current |