2 Commits

Author SHA1 Message Date
3e91a487f8 Update ghcr.io/immich-app/immich-machine-learning Docker tag to v1.135.3
All checks were successful
lint-test-helm / helm-lint (pull_request) Successful in 10s
2025-07-10 00:13:01 +00:00
a4a6f06d51 fix script
All checks were successful
renovate / renovate (push) Successful in 1m24s
lint-test-helm / helm-lint (push) Successful in 13s
2025-07-09 19:12:00 -05:00

View File

@@ -229,10 +229,10 @@ backup:
echo ">> Backups prior to '$DATE_RANGE' will be removed" echo ">> Backups prior to '$DATE_RANGE' will be removed"
echo ">> Backups to be removed:" echo ">> Backups to be removed:"
s3cmd ls ${BUCKET}/cl01tl/ | s3cmd ls ${BUCKET}/cl01tl/ |
awk file_match="$FILE_MATCH" '$4 < file_match {print $4}' awk -v file_match="$FILE_MATCH" '$4 < file_match {print $4}'
echo ">> Deleting ..." echo ">> Deleting ..."
s3cmd ls ${BUCKET}/cl01tl/ | s3cmd ls ${BUCKET}/cl01tl/ |
awk file_match="$FILE_MATCH" '$4 < file_match {print $4}' | awk -v file_match="$FILE_MATCH" '$4 < file_match {print $4}' |
while read file; do while read file; do
s3cmd del "$file"; s3cmd del "$file";
done; done;