This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-06 12:35:17 +00:00
|
|
|
#!/usr/local/bin/bash
|
|
|
|
|
|
|
|
# This subscript is expected to be run inside docker container using 'bash'
|
|
|
|
# image. The image is based on Alpine Linux. It's tools (find, stat, awk, sort)
|
|
|
|
# are non-standard versions from BusyBox.
|
|
|
|
|
|
|
|
MAX_CACHE_DIR_SIZE=20000000000
|
|
|
|
MAX_KEEP_FILE_SIZE=1000000000
|
|
|
|
|
|
|
|
total=0
|
|
|
|
|
2021-12-06 13:13:56 +00:00
|
|
|
# We sort files by time, newest files are first. Format is:
|
|
|
|
# time (last modification as seconds since Epoch), filepath, size (bytes)
|
2021-12-06 12:35:17 +00:00
|
|
|
find /home/user/skynet-webportal/docker/data/nginx/cache -type f -exec stat -c "%Y %n %s" {} + | sort -rgk1 | while read line
|
|
|
|
do
|
|
|
|
size=$(echo $line | awk '{print $3}')
|
|
|
|
new_total=$(($total + $size))
|
2021-12-06 13:13:56 +00:00
|
|
|
|
|
|
|
# We always delete all files larger than MAX_KEEP_FILE_SIZE.
|
|
|
|
# We keep all files smaller than MAX_KEEP_FILE_SIZE when cache size is
|
|
|
|
# below MAX_CACHE_DIR_SIZE, then we delete also smaller files.
|
2021-12-06 15:13:00 +00:00
|
|
|
if (("$size" <= "$MAX_KEEP_FILE_SIZE" && "$new_total" < "$MAX_CACHE_DIR_SIZE"))
|
2021-12-06 12:35:17 +00:00
|
|
|
then
|
|
|
|
total=$new_total
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
filename=$(echo $line | awk '{print $2}')
|
|
|
|
rm $filename
|
|
|
|
done
|