X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=installation%2Fnginx-cache-purge.sh.example;h=5f6cbb128344b636006baf01c96d0bf567253a85;hb=720198d56950ca98f4d947dd630b0e170eda569b;hp=aaa195324e95d4c8998d97f2e7ec4cfabb39eaec;hpb=b5b9d161cddd1b6650cde00cf0f3cbf56ab7a4a3;p=akkoma diff --git a/installation/nginx-cache-purge.sh.example b/installation/nginx-cache-purge.sh.example index aaa195324..5f6cbb128 100755 --- a/installation/nginx-cache-purge.sh.example +++ b/installation/nginx-cache-purge.sh.example @@ -13,7 +13,7 @@ CACHE_DIRECTORY="/tmp/pleroma-media-cache" ## $3 - (optional) the number of parallel processes to run for grep. get_cache_files() { local max_parallel=${3-16} - find $2 -maxdepth 2 -type d | xargs -P $max_parallel -n 1 grep -ERl "^KEY:.*$1" | sort -u + find $2 -maxdepth 2 -type d | xargs -P $max_parallel -n 1 grep -E -Rl "^KEY:.*$1" | sort -u } ## Removes an item from the given cache zone. @@ -37,4 +37,4 @@ purge() { } -purge $1 +purge $@