diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-08-10 21:40:24 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-08-10 21:40:24 +0200 |
commit | af4f86808e8cd45cc171f55a1ec15bf30d858a0d (patch) | |
tree | 8bc626956bad716595c7123d956cddf583087d87 /db-functions | |
parent | 9c06372cf6caa2ba25e9ab1f32cbb02b2d280b13 (diff) |
Use more consitent naming for package pool
There are no longer architecture-specific subdirs and the structure was switch to this:
ftp
└── pool
├── community
└── packages
packages contains all packages from core, extra and testing; this naming is in sync with the svn repo naming:
svn-packages and svn-community
Diffstat (limited to 'db-functions')
-rw-r--r-- | db-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db-functions b/db-functions index 9abb694..c4fc8f3 100644 --- a/db-functions +++ b/db-functions @@ -228,9 +228,9 @@ get_repos_for_host() { get_pkgpool_for_host() { if [ "$(hostname)" = "sigurd" ]; then - echo "packages/community" + echo "pool/community" else - echo "packages/arch" + echo "pool/packages" fi } |