From 5034b4e644c55631dfd5c88b491873389fc52e50 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 20 Jun 2010 17:29:40 +0200 Subject: Replace PKGPOOL_DIR by a function call The package pool dir depends on the host; so we solve this similar to get_repos_for_host() Note: There is no "os" subdir for the package pool. --- db-update | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'db-update') diff --git a/db-update b/db-update index bcfb882..28095d8 100755 --- a/db-update +++ b/db-update @@ -131,11 +131,11 @@ for current_arch in ${ARCHES[@]}; do ftppath="$FTP_BASE/$reponame/os/$current_arch" ftppath_any="$FTP_BASE/$reponame/os/any" - poolpath="$FTP_BASE/$PKGPOOL_DIR/os/$current_arch" - poolpath_any="$FTP_BASE/$PKGPOOL_DIR/os/any" + poolpath="$FTP_BASE/$(get_pkgpool_for_host)/$current_arch" + poolpath_any="$FTP_BASE/$(get_pkgpool_for_host)/any" # The following is used to create relative symlinks - poolrel="../../../$PKGPOOL_DIR/os/$current_arch" - poolrel_any="../../../$PKGPOOL_DIR/os/any" + poolrel="../../../$(get_pkgpool_for_host)/$current_arch" + poolrel_any="../../../$(get_pkgpool_for_host)/any" if [ ! -d "$ftppath" ]; then echo "FTP path for this repo ($reponame) is missing" -- cgit v1.2.3-24-g4f1b