mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
12 lines
141 B
Bash
Executable file
12 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ulimit -n 10240
|
|
ulimit -u 10240
|
|
|
|
cd /var/stratum
|
|
while true; do
|
|
./stratum /var/yaamp/config/$1
|
|
sleep 2
|
|
done
|
|
exec bash
|
|
|