debian-mirror-gitlab/scripts/clean-old-cached-assets

7 lines
250 B
Plaintext
Raw Normal View History

2019-03-02 22:35:43 +05:30
#!/bin/bash
# Clean up cached files that are older than 1 week
find tmp/cache/assets/sprockets/ -type f -mtime +7 -execdir rm -- "{}" \;
du -d 0 -h tmp/cache/assets/sprockets | cut -f1 | xargs -I % echo "tmp/cache/assets/sprockets/ is currently %"