Indirectly the scripts (at first the server test script) also document what needs to be done to setup a (local) server. The productive client script can be used by everyone who wants to support daca@home, not only for testing. But i still think it is good to have it under /test to not lose too much clarity / lucidity in the /tools directory.
10 lines
141 B
Bash
10 lines
141 B
Bash
#!/bin/sh
|
|
|
|
cppcheck_tools_path=..
|
|
|
|
while :
|
|
do
|
|
python "${cppcheck_tools_path}/donate-cpu.py" --test --bandwidth-limit=2m
|
|
sleep 2
|
|
done
|