diff options
Diffstat (limited to 'db-arch')
-rwxr-xr-x | db-arch | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/bash -# $Id: db-arch,v 1.11 2003/10/12 18:42:55 judd Exp $ +# $Id: db-arch,v 1.12 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 /tmp/archpkg.$uid; [ $? -gt 0 ] && exit 1 echo "==> Generating Pacman Database for OFFICIAL..." >&2 cd $TMPDIR CVS_RSH=ssh CVSROOT=:ext:cvs.archlinux.org:/home/cvs-arch cvs -q export -r CURRENT -f arch/build -/usr/bin/gensync $TMPDIR/arch/build $TMPDIR/current.db.tar.gz +/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 cd $TMPDIR/arch/build && /arch/pkgdb 1 |