mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-17 12:58:20 +01:00
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
while true
|
|
do
|
|
php /www/admin.php clean_expired
|
|
php /www/admin.php clean_async
|
|
# wait 24 hours
|
|
sleep 86400
|
|
done |