summaryrefslogtreecommitdiffstats
path: root/db-repo-remove
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2011-01-15 01:12:09 +0100
committerPierre Schmitz <pierre@archlinux.de>2011-01-15 01:12:09 +0100
commit4da9bf112b07c94a7fd65a729ce62610ade8e5aa (patch)
tree326b793a2b8a2bacc43be518d0f209557d8afd03 /db-repo-remove
parent7519447709e1ac9a5b5edaa04b32c03ac09ee2ef (diff)
downloaddbscripts-4da9bf112b07c94a7fd65a729ce62610ade8e5aa.tar.gz
dbscripts-4da9bf112b07c94a7fd65a729ce62610ade8e5aa.tar.xz
Move repo manipulation code into common functions
repo-add and repo-remove is now indirectly called by arch_repo_add/remove. This simplifies future extensions like incremental file list creations. See FS#11302
Diffstat (limited to 'db-repo-remove')
-rwxr-xr-xdb-repo-remove7
1 files changed, 1 insertions, 6 deletions
diff --git a/db-repo-remove b/db-repo-remove
index 6fa0e05..b01910f 100755
--- a/db-repo-remove
+++ b/db-repo-remove
@@ -31,11 +31,6 @@ done
msg "Removing $pkgname from [$repo]..."
for tarch in ${tarches[@]}; do
- if [ ! -f "$ftppath/$tarch/$repo$DBEXT" ]; then
- die "No database found at '$ftppath/$tarch', nothing more to do"
- fi
-
- /usr/bin/repo-remove -q "$ftppath/$tarch/$repo$DBEXT" ${pkgname} >/dev/null
- set_repo_permission "${repo}" "${tarch}"
+ arch_repo_remove "${repo}" "${tarch}" ${pkgname}
repo_unlock $repo $tarch
done