First round of updates for Debian base.

This commit is contained in:
Darren 'Tadgy' Austin 2025-11-08 19:08:51 +00:00
commit 069d99da13
123 changed files with 871 additions and 4163 deletions

4
opt/sbin/cronjob-clean-php Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
[[ -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