1 Commits

Author SHA1 Message Date
8355e52782 Update ghcr.io/immich-app/immich-server Docker tag to v1.135.3
All checks were successful
lint-test-helm / helm-lint (pull_request) Successful in 8s
2025-07-09 23:23:36 +00:00

View File

@@ -227,14 +227,14 @@ backup:
export FILE_MATCH="$BUCKET/cl01tl/gitea-backup-$DATE_RANGE-09-00.zip"
echo ">> Running S3 prune for Gitea backup repository"
echo ">> Backups prior to '$DATE_RANGE' will be removed"
echo ">> Backups to be removed:"
s3cmd ls ${BUCKET}/cl01tl/ |
awk file_match="$FILE_MATCH" '$4 < file_match {print $4}'
echo ">> File list:"
s3cmd ls ${BUCKET}/cl01tl/
echo ">> Deleting ..."
s3cmd ls ${BUCKET}/cl01tl/ |
awk file_match="$FILE_MATCH" '$4 < file_match {print $4}' |
while read file; do
s3cmd del "$file";
while read file;
do s3cmd del "$file";
echo ">> Deleted $file";
done;
echo ">> Completed S3 prune for Gitea backup repository"
env: