diff options
author | Judd Vinet <judd@archlinux.org> | 2004-04-01 23:04:14 +0200 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2004-04-01 23:04:14 +0200 |
commit | f277673d7e083f2cb32537a1764c1819edecb923 (patch) | |
tree | b6c6df1942da83c909d9216e31a026d9ffec3b78 /db-unstable | |
parent | c73bc36772e5811700cc80cc24c8a759b16cbc1e (diff) | |
download | dbscripts-f277673d7e083f2cb32537a1764c1819edecb923.tar.gz dbscripts-f277673d7e083f2cb32537a1764c1819edecb923.tar.xz |
changed mysql temp file so one user can run multiple db-gen scripts concurrently
Diffstat (limited to 'db-unstable')
-rwxr-xr-x | db-unstable | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/db-unstable b/db-unstable index 93e8465..6e0efa5 100755 --- a/db-unstable +++ b/db-unstable @@ -1,9 +1,9 @@ #!/bin/bash -# $Id: db-unstable,v 1.9 2004/01/06 02:50:53 judd Exp $ +# $Id: db-unstable,v 1.10 2004/04/01 21:09:13 judd Exp $ uid=`id -u` -TMPDIR="/tmp/archpkg.$uid" repoid=3 +TMPDIR="/tmp/archpkg.$repoid.$uid" cleanup() { rm -rf $TMPDIR @@ -38,6 +38,11 @@ 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 +# check again +if [ -d /tmp/.gensync ]; then + echo "error: someone else is currently running gensync!" + exit 1 +fi /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 |