Files
invoiceninja-docker/config/cron.sh
David Bomba 98e41ad73b Rework crons
2021-01-05 11:02:57 +11:00

17 lines
668 B
Bash
Executable File

#!/bin/sh
echo "Early Entry"
cleanup ()
{
kill -s SIGTERM $!
exit 0
}
trap cleanup SIGINT SIGTERM
while :
do
sleep 60 ; cd /var/www/app/ && php artisan schedule:run;
done