mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
for now, only migrate loop2.sh screen task... todo: blocks.sh and main.sh after more tests
13 lines
171 B
Bash
Executable file
13 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PHP_CLI='php -d max_execution_time=120'
|
|
|
|
date
|
|
|
|
cd /var/web
|
|
while true; do
|
|
${PHP_CLI} runconsole.php cronjob/runLoop2
|
|
sleep 60
|
|
done
|
|
exec bash
|
|
|