diff options
Diffstat (limited to 'src/bin/db-repo-add')
-rwxr-xr-x | src/bin/db-repo-add | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/src/bin/db-repo-add b/src/bin/db-repo-add deleted file mode 100755 index c31fdd9..0000000 --- a/src/bin/db-repo-add +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/bash - -CONFIG_DIR="$(dirname "$(readlink -e "$0")")/etc" - -source "${CONFIG_DIR}/dbscripts.d/db-functions.cfg" -source "${CONFIG_DIR}/dbscripts.d/main.cfg" -source "${CONFIG_DIR}/dbscripts.cfg" - -db-repo-add_usage() { - "usage: %s [-p platform] <repo> <arch> <pkgfile> ..." "${0##*/}" - exit 1 -} - -db-repo-add_check-repo-permission() { - if ! check_repo_permission "$repo"; then - die "You don't have permission to add packages to %s" "${repo}" - fi -} - -db-repo-add_check-arch-if-any() { - if [ "$arch" == "any" ]; then - tarches=("${ARCHES[@]}") - else - tarches=("$arch") - fi -} - -db-repo-add_exec() { - db-repo-add_check-repo-permission - db-repo-add_check-arch-if-any - for tarch in "${tarches[@]}"; do - repo_lock "$repo" "$tarch" || exit 1 - for pkg_file in "${pkg_files[@]}"; do - if [[ ! -f "${repo_path}/${arch}/${pkg_file##*/}" ]]; then - die "Package file %s not found in %s" "${pkg_file##*/}" "${repo_path}/${arch}/" - else - msg "Adding %s to [%s]..." "$pkg_file" "$repo" - fi - done - arch_repo_add "${repo}" "${tarch}" "${pkg_files[@]}" - repo_unlock "$repo" "$tarch" - done -} - -for 'platform' in "${PLATFORMS[@]}"; do - case "$1" in - --platform|-platform|-p) - if [ $# -lt 5 ]; then - db-repo-add-usage - fi - - # Rename plataform name ($2) to easily script usage - _platform_name="${2/\//+}" _platform_name="${_platform_name,,}" - - if [ "${_platform_name}" == "${platform}" ]; then - source "${CONFIG_DIR}/dbscripts.d/${_platform_name}.cfg" - - repo="$3" - arch="$4" - pkg_files=("${@:3}") - repo_path="${REPO_DIR}/${_platform_name}/${repo}/os" - - db-repo-add_run - fi - ;; - *) - if [ $# -lt 3 ]; then - db-repo-add-usage - fi - - source "${CONFIG_DIR}/dbscripts.d/${platform}.cfg" - - repo="$1" - arch="$2" - pkg_files=("${@:3}") - repo_path="${REPO_DIR}/${platform}/${repo}/os" - - db-repo-add_run - ;; - esac -done |