summaryrefslogtreecommitdiff
path: root/extra/coadde/db-cleanup
diff options
context:
space:
mode:
Diffstat (limited to 'extra/coadde/db-cleanup')
-rwxr-xr-xextra/coadde/db-cleanup69
1 files changed, 0 insertions, 69 deletions
diff --git a/extra/coadde/db-cleanup b/extra/coadde/db-cleanup
deleted file mode 100755
index ffa2601..0000000
--- a/extra/coadde/db-cleanup
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-# Syncs pools against themselves using database contents as filter to cleanup
-# them up
-# License: GPLv3
-
-# Principles
-# * Get repos dbs contents
-# * Make them a include list
-# * Rsync pools against themselves removing excluded files
-# * Instant cleanup!
-
-trap_exit() {
- echo
- error "$@"
- exit 1
-}
-
-source "$(dirname "$(readlink -e "$0")")/config"
-source "$(dirname "$(readlink -e "$0")")/db-libremessages"
-
-# From makepkg
-set -E
-
-trap 'trap_exit "$(gettext "TERM signal caught. Exiting...")"' TERM HUP QUIT
-trap 'trap_exit "$(gettext "Aborted by user! Exiting...")"' INT
-trap 'trap_exit "$(gettext "An unknown error has occurred. Exiting...")"' ERR
-
-EXTRAFLAGS=()
-"${CLEANUP_DRYRUN}" && EXTRAFLAGS+=(--dry-run)
-
-filter=$(mktemp -t "${0##*/}.XXXXXXXXXX")
-trap "rm -f -- $(printf %q "$filter")" EXIT
-
-for _repo in "${PKGREPOS[@]}"; do
- for _arch in "${ARCHES[@]}"; do
- msg "Getting %s-%s database" "${_repo}" "${_arch}"
-
- dbfile="${FTP_BASE}/${_repo}/os/${_arch}/${_repo}${DBEXT}"
-
- if [ ! -r "${dbfile}" ]; then
- warning "Not found"
- continue
- fi
-
- # Echo the contents into a filter file
- bsdtar tf "${dbfile}" | \
- cut -d'/' -f1 | \
- sort -u | \
- sed "s|$|*|" >> "$filter"
-
- done
-done
-
-msg "Removing old files:"
-
-for POOL in "${PKGPOOLS[@]}" "${SRCPOOLS[@]}"; do
- msg2 '%s' "${POOL}"
-
- rsync "${EXTRAFLAGS[@]}" -va --delete-excluded \
- --include-from="$filter" \
- --exclude="*" \
- "${FTP_BASE}/${POOL}/" \
- "${FTP_BASE}/${POOL}/"
-done
-
-msg "Removing dead symlinks:"
-actions=(-print)
-"${CLEANUP_DRYRUN}" || actions+=(-delete)
-find -L "${FTP_BASE}/" -type l "${actions[@]}"