mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-06 02:29:45 +00:00
11 lines
150 B
Bash
Executable file
11 lines
150 B
Bash
Executable file
#!/bin/bash
|
|
|
|
alias php5='php -d max_execution_time=120'
|
|
|
|
cd /var/web
|
|
while true; do
|
|
php5 run.php cronjob/run
|
|
sleep 90
|
|
done
|
|
exec bash
|
|
|