From c7c797f0863c41f1e7ef9e17b408dab84ef493e6 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Tue, 18 Aug 2009 16:12:59 -0700 Subject: Use db-functions file everywhere This source the config file and gets us functions such as getpkgname which were duplicated elsewhere Signed-off-by: Aaron Griffin --- cron-jobs/createFileLists | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'cron-jobs/createFileLists') 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" ;; -- cgit v1.2.3-24-g4f1b