mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
13 lines
174 B
Bash
Executable file
13 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ulimit -n 10240
|
|
ulimit -u 10240
|
|
|
|
cd /var/stratum
|
|
while [ -e config/${1}.conf ]; do
|
|
gzip -f config/${1}.log
|
|
./stratum config/$1
|
|
sleep 1
|
|
done
|
|
exec bash
|
|
|