From: Rob H. <for...@us...> - 2004-03-08 08:26:05
|
Update of /cvsroot/sandweb/sandweb/t In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17422/t Modified Files: test.cfg Log Message: this fixes some long-outstanding issues on the trunk: * perl and sh are configurable in install.cfg now, with preference for perl given to the perl used to run Makefile.PL (fixes sf.net bug 877125) * fixed up the tests a bit, needs alot more attention updated test.cfg to address all the latest config options * the group file is copied in by default now. We need to add support to sandweb-admin so users are added to groups at that time. * reduced the number of warnings we get running under perl 5.8 (deprecations, etc.) Index: test.cfg =================================================================== RCS file: /cvsroot/sandweb/sandweb/t/test.cfg,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- test.cfg 28 Mar 2002 03:27:15 -0000 1.1 +++ test.cfg 8 Mar 2004 08:01:56 -0000 1.2 @@ -4,17 +4,16 @@ <!-- config tree for logging behavior --> <logging debug="0" - log="0" + log="1" /> <!-- config for paths to sandweb data files --> - <paths template_dir="../templates" + <paths template_dir="t/templates" data_dir="t/var/data" log_dir="t/var/log" - work_dir="t/var/work" users_dir="t/var/users" /> <!-- config for cgi related information --> - <cgi-bin cgi_path="/cgi-bin/sandweb/bin" + <cgi-bin cgi_path="/cgi-bin" cgi_domain="" /> @@ -30,6 +29,18 @@ /> - <webserver mime-types_location="/usr/local/apache/conf" + <webserver mime-types_location="/etc/apache" mime-types_file="mime.types" + image_dir="/images" + /> + + <!-- + System paths for SSH, CVS and SandWeb scripts, + and time limit when running on the CLI + --> + <system ssh_bin="/usr/bin/ssh" + cvs_bin="/usr/bin/cvs" + bindir="/usr/local/bin" + timeout="300" + auth_type="unix" /> |