summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdb-update23
1 files changed, 23 insertions, 0 deletions
diff --git a/db-update b/db-update
index aa1cb95..c68cf84 100755
--- a/db-update
+++ b/db-update
@@ -74,6 +74,29 @@ die() {
trap ctrl_c 2
trap cleanup 0
+# Remove any package from $stagedir that is already in the FTP repository
+for f in $stagedir/*-any$PKGEXT; do
+ bf=$(basename $f)
+ ftppath_any="$FTP_BASE/$reponame/os/any"
+ if [[ -f $ftppath_any/$bf ]]; then
+ echo " WARNING: Package file $bf already exists in FTP repo"
+ echo " Removing from $stagedir"
+ /bin/rm $f
+ fi
+done
+
+for current_arch in ${ARCHES[@]}; do
+ ftppath="$FTP_BASE/$reponame/os/$current_arch"
+ for f in $stagedir/*-$current_arch$PKGEXT; do
+ bf=$(basename $f)
+ if [[ -f $ftppath/$bf ]]; then
+ echo " WARNING: Package file $bf already exists in FTP repo"
+ echo " Removing from $stagedir"
+ /bin/rm $f
+ fi
+ done
+done
+
# Process architecture-independent packages first.
if [ -d "$stagedir" ]; then
ANYPKGS="$(/bin/ls $stagedir/*-any$PKGEXT 2>/dev/null)"