Files

11 lines
284 B
Bash
Raw Permalink Normal View History

2024-06-21 16:24:37 -05:00
#!/usr/bin/env bash
2024-06-21 16:23:24 -05:00
mc alias set storage "$STORAGE_URL" root "$MINIO_SECRET"
for f in $(mc ls --json storage/isos/cache | jq '.key' | tr -d '"'); do
2024-06-28 09:51:44 -05:00
if [ ! -e "./cache/$f" ]; then
mc get -q "storage/isos/cache/$f" "./cache/$f"
else
echo "Skipping already present: $f"
fi
2024-06-21 16:23:24 -05:00
done