From 976463476e17be7c39fed5465609e4844199fa5f Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Sat, 18 Jul 2026 17:09:26 +0100 Subject: [PATCH] Always exit with 0 status. --- cronjob-clean-php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cronjob-clean-php b/cronjob-clean-php index 40010a6..fdb703f 100755 --- a/cronjob-clean-php +++ b/cronjob-clean-php @@ -3,3 +3,5 @@ [[ -d /var/lib/php/sessions ]] && find /var/lib/php/sessions -mmin +1440 -type f -print0 | xargs -0 rm -f [[ -d /var/tmp/php-uploads ]] && find /var/tmp/php-uploads -mmin +1440 -type f -print0 | xargs -0 rm -f + +exit 0