summaryrefslogtreecommitdiffstats
path: root/cron-jobs/createFileLists
diff options
context:
space:
mode:
Diffstat (limited to 'cron-jobs/createFileLists')
-rwxr-xr-xcron-jobs/createFileLists13
1 files changed, 1 insertions, 12 deletions
diff --git a/cron-jobs/createFileLists b/cron-jobs/createFileLists
index 4ad4c22..345f9aa 100755
--- a/cron-jobs/createFileLists
+++ b/cron-jobs/createFileLists
@@ -4,7 +4,7 @@ reposdir=/srv/ftp/
targetdir=$reposdir
repos="core extra testing community"
-. $(dirname $0)/../config
+. "$(dirname $0)/../db-functions"
if [ -f "/tmp/createFileList.lock" ]; then
echo "Error: createFileList allready in progress."
@@ -18,17 +18,6 @@ CACHEDIR=$(mktemp -d /tmp/createFileList.XXXXXX) || exit 1
#adjust the nice level to run at a lower priority
/usr/bin/renice +10 -p $$ > /dev/null
-getpkgname() {
- local tmp
-
- tmp=${1##*/}
- tmp=${tmp%$PKGEXT}
- tmp=${tmp%-i686}
- tmp=${tmp%-x86_64}
- tmp=${tmp%-any}
- echo $tmp
-}
-
case "${DBEXT}" in
*.gz) TAR_OPT="z" ;;
*.bz2) TAR_OPT="j" ;;