]> git.decadent.org.uk Git - dak.git/commitdiff
dsync
authorJoerg Jaspert <joerg@debian.org>
Thu, 5 Feb 2009 16:14:56 +0000 (17:14 +0100)
committerJoerg Jaspert <joerg@debian.org>
Thu, 5 Feb 2009 16:14:56 +0000 (17:14 +0100)
as we now built our own static version, add a bindir variable, put
the compiled one in there and use it from that place.

Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/vars
scripts/debian/mkchecksums

index 02fa6123e7cf7dc504c943c3020725068c4030d4..8f311dd8ce94f381f5a43c8d8d5249e0a39fb777 100644 (file)
@@ -1,6 +1,7 @@
 # locations used by many scripts
 
 base=/srv/ftp.debian.org
+bindir=$base/bin
 ftpdir=$base/ftp
 webdir=$base/web
 indices=$ftpdir/indices
index 575d55c553658800864488097739052afda9824c..f733e89bba7aa363dad25cd1f1fa7df89f7afa59 100755 (executable)
@@ -10,6 +10,6 @@ md5list=$indices/md5sums
 echo -n "Creating md5 / dsync index file ... "
 
 cd "$ftpdir"
-dsync-flist -q generate $dsynclist --exclude $dsynclist --md5
-dsync-flist -q md5sums $dsynclist | gzip -9n > ${md5list}.gz
-dsync-flist -q link-dups $dsynclist || true
+${bindir}/dsync-flist -q generate $dsynclist --exclude $dsynclist --md5
+${bindir}/dsync-flist -q md5sums $dsynclist | gzip -9n > ${md5list}.gz
+${bindir}/dsync-flist -q link-dups $dsynclist || true