diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-07-22 20:55:01 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-07-22 20:55:01 -0700 |
commit | 6ed6f4e6a482e913b01f5dc6d0b52575614742a7 (patch) | |
tree | 22394534cd5d87254f2685c0bc56b6e50620d627 /cron-jobs/createFileLists | |
parent | 94c1ba6eed3fbdda8be0b7c67257d30dcabfd5c6 (diff) |
Use the top level config file for cron-jobs
Source our config file, and use ARCHES from it
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'cron-jobs/createFileLists')
-rwxr-xr-x | cron-jobs/createFileLists | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cron-jobs/createFileLists b/cron-jobs/createFileLists index 10520af..61cbc21 100755 --- a/cron-jobs/createFileLists +++ b/cron-jobs/createFileLists @@ -3,7 +3,8 @@ reposdir=/srv/ftp/ targetdir=$reposdir repos="core extra testing community" -arches="i686 x86_64" + +. $(dirname $0)/../config if [ -f /etc/makepkg.conf ]; then . /etc/makepkg.conf @@ -45,7 +46,7 @@ esac cd $reposdir for repo in $repos; do REPO_DB_FILE=${repo}.files.tar.${DB_COMPRESSION} - for arch in $arches; do + for arch in ${ARCHES[@]}; do repodir=${repo}/os/${arch}/ cached="no" |