mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-16 20:38:29 +01:00
420be1d8b3
- web_root - var_root - admin_password ref #247 Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/sh -e
|
|
sleep 10 # avoid running cleaning before first setup
|
|
while true
|
|
do
|
|
php /www/admin.php clean_expired
|
|
php /www/admin.php clean_async
|
|
# wait 24 hours
|
|
sleep 86400
|
|
done
|