summaryrefslogtreecommitdiff
path: root/cron-jobs
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2009-08-18 16:11:03 -0700
committerAaron Griffin <aaronmgriffin@gmail.com>2009-08-18 16:11:03 -0700
commit49fb4d75ea83dca2ed4653e8454c478c1fd0555a (patch)
tree0d5756f95d28f42c1baa5d4df75f33e3c904ff7d /cron-jobs
parent6666d28f019b1b7ea38f9bf1f4371a87d42fb927 (diff)
More removal of DB_COMPRESSION from cron jobs
Remove dependance on makepkg.conf Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'cron-jobs')
-rwxr-xr-xcron-jobs/createFileLists17
1 files changed, 9 insertions, 8 deletions
diff --git a/cron-jobs/createFileLists b/cron-jobs/createFileLists
index 610f0e1..4ad4c22 100755
--- a/cron-jobs/createFileLists
+++ b/cron-jobs/createFileLists
@@ -3,7 +3,6 @@
reposdir=/srv/ftp/
targetdir=$reposdir
repos="core extra testing community"
-DB_COMPRESSION="gz"
. $(dirname $0)/../config
@@ -30,16 +29,18 @@ getpkgname() {
echo $tmp
}
-case "${DB_COMPRESSION}" in
- gz) TAR_OPT="z" ;;
- bz2) TAR_OPT="j" ;;
- xz) TAR_OPT="J" ;;
- *) echo "${DB_COMPRESSION} is not a valid archive compression" && exit 1 ;;
+case "${DBEXT}" in
+ *.gz) TAR_OPT="z" ;;
+ *.bz2) TAR_OPT="j" ;;
+ *.xz) TAR_OPT="J" ;;
+ *) echo "Unknown compression type for DBEXT=${DBEXT}" && exit 1 ;;
esac
+FILESEXT="${DBEXT//db/files}"
+
cd $reposdir
for repo in $repos; do
- REPO_DB_FILE=${repo}.files.tar.${DB_COMPRESSION}
+ REPO_DB_FILE=${repo}$FILESEXT
for arch in ${ARCHES[@]}; do
repodir=${repo}/os/${arch}/
cached="no"
@@ -77,7 +78,7 @@ for repo in $repos; do
cd ${TMPDIR}/${repodir}
[ -f "${pkgdir}${REPO_DB_FILE}.old" ] && rm "${pkgdir}${REPO_DB_FILE}.old"
[ -f "${pkgdir}${REPO_DB_FILE}" ] && mv "${pkgdir}${REPO_DB_FILE}" "${pkgdir}${REPO_DB_FILE}.old"
- bsdtar --exclude=*.tar.${DB_COMPRESSION} -c${TAR_OPT}f ${pkgdir}${REPO_DB_FILE} *
+ bsdtar --exclude=*${DBEXT//\.db/} -c${TAR_OPT}f ${pkgdir}${REPO_DB_FILE} *
fi
cd $reposdir