summaryrefslogtreecommitdiffstats
path: root/db-testing
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2005-02-25 22:27:44 +0100
committerJudd Vinet <judd@archlinux.org>2005-02-25 22:27:44 +0100
commitabccc814a02f7be0e97bade0892f80eb4c71f0de (patch)
tree5e7ffdffc28b47ec0c234c37921394b05be16b3c /db-testing
parentebd86ff4b54d7dbce2cc8c77293937cd688a801b (diff)
downloaddbscripts-abccc814a02f7be0e97bade0892f80eb4c71f0de.tar.gz
dbscripts-abccc814a02f7be0e97bade0892f80eb4c71f0de.tar.xz
added filelists to the web package db
Diffstat (limited to 'db-testing')
-rwxr-xr-xdb-testing12
1 files changed, 7 insertions, 5 deletions
diff --git a/db-testing b/db-testing
index af94104..230c0f7 100755
--- a/db-testing
+++ b/db-testing
@@ -1,8 +1,10 @@
#!/bin/bash
-# $Id: db-testing,v 1.9 2005/02/01 03:00:47 judd Exp $
+# $Id: db-testing,v 1.10 2005/02/25 21:27:44 judd Exp $
uid=`id -u`
repoid=4
+ftppath="/home/ftp/testing/os/i686"
+
TMPDIR="/tmp/archpkg.$repoid.$uid"
cleanup() {
@@ -52,15 +54,15 @@ if [ -d /tmp/.gensync ]; then
cleanup
exit 1
fi
-/usr/bin/gensync $TMPDIR $TMPDIR/testing.db.tar.gz /home/ftp/testing/os/i686
-[ -f $TMPDIR/testing.db.tar.gz ] && mv -f $TMPDIR/testing.db.tar.gz /home/ftp/testing/os/i686
+/usr/bin/gensync $TMPDIR $TMPDIR/testing.db.tar.gz $ftppath
+[ -f $TMPDIR/testing.db.tar.gz ] && mv -f $TMPDIR/testing.db.tar.gz $ftppath
echo "==> Scanning for New/Updated/Deleted packages..." >&2
cd $TMPDIR
-/arch/pkgdb1 $repoid | /arch/pkgdb2 $repoid
+/arch/pkgdb1 $repoid | /arch/pkgdb2 $repoid $ftppath
echo "==> Generating Text Package List..." >&2
/arch/genpkglist testing
-mv packages.txt /home/ftp/testing/os/i686/packages.txt
+mv packages.txt $ftppath/packages.txt
cleanup