/etc/cron.hourly
):#!/bin/sh
CLEANCACHE=/tmp
find $CLEANCACHE/.CACHE/.hls_cache -depth -type f -mmin +15 -print0 | xargs -0 -r rm -f > /dev/null 2>&1
find $CLEANCACHE/.CACHE/.zmp_cache -depth -type f -mmin +15 -print0 | xargs -0 -r rm -f > /dev/null 2>&1
/etc/cron.daily
, то будет удалять раз в 24 часа...