Ok, so I am setting up a modified bot-box, but after receiving all the necessary perl modules and libraries, I get this error:
sudo perl run-test
Running bot 18076
tcltest
Error in constructor: couldn't execute "git": no such file or directory at tcltest.pl line 12.
Here is line 12 of tcltest.pl:
print $tcl->EvalFile("smeggdrop.tcl"),$/;
What contains:
encoding system utf-8
set SMEGGDROP_ROOT [file dirname [info script]]
if [file exists smeggdrop.conf] {source smeggdrop.conf}
source $SMEGGDROP_ROOT/smeggdrop/smeggdrop.tcl
And smeggdrop.conf:
set smeggdrop_http_requests_per_eval 5 ;
set smeggdrop_http_request_interval 60 ;
set smeggdrop_http_request_limit 25 ;
set smeggdrop_http_post_limit 150000 ;
set smeggdrop_http_transfer_limit 150000 ;
set smeggdrop_http_time_limit 5000 ;
set smeggdrop_log_max_lines 20 ;
source
share