diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-02-04 17:59:45 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-27 15:46:04 +0200 |
commit | 7085fb0cac4028502574909555305086f84807c6 (patch) | |
tree | f8b820b2ba6095460e72376725642ecfac82fa22 | |
parent | 367d02076d77937e09d5042c17ed1b27f638aa19 (diff) | |
download | dbscripts-7085fb0cac4028502574909555305086f84807c6.tar.gz dbscripts-7085fb0cac4028502574909555305086f84807c6.tar.xz |
remove db-repo-remove
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | db-repo-remove | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/db-repo-remove b/db-repo-remove deleted file mode 100755 index 2a693f4..0000000 --- a/db-repo-remove +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -. "$(dirname $0)/config" -. "$(dirname $0)/db-functions" - -if [ $# -lt 3 ]; then - msg "usage: ${0##*/} <repo> <arch> <pkgname> ..." - exit 1 -fi - -repo="$1" -arch="$2" -pkgnames=(${@:3}) - -ftppath="$FTP_BASE/$repo/os" - -if ! check_repo_permission $repo; then - die "You don't have permission to remove packages from ${repo}" -fi - -if [ "$arch" == "any" ]; then - tarches=(${ARCHES[@]}) -else - tarches=("$arch") -fi - -for tarch in ${tarches[@]}; do - repo_lock $repo $tarch || exit 1 -done - -for tarch in ${tarches[@]}; do - for pkgname in ${pkgnames[@]}; do - msg "Removing $pkgname from [$repo]..." - done - arch_repo_remove "${repo}" "${tarch}" ${pkgnames[@]} - repo_unlock $repo $tarch -done |