Index: openacs-4/etc/install/install.sh
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/etc/install/install.sh,v
diff -u -r1.37 -r1.38
--- openacs-4/etc/install/install.sh	26 Nov 2003 16:38:01 -0000	1.37
+++ openacs-4/etc/install/install.sh	8 Dec 2003 16:35:57 -0000	1.38
@@ -211,6 +211,7 @@
 aolserver_config_file=`get_config_param aolserver_config_file`
 install_xml_file=`get_config_param install_xml_file`
 tclwebtest_scripts=`get_config_param tclwebtest_scripts`
+do_tclapi_testing=`get_config_param do_tclapi_testing`
 
 # If pre/post checkout scripts have been provided, check that they can
 # be executed
@@ -565,11 +566,15 @@
 
   #-------------------------------------------------------------------
   # Run the Tcl API tests
-  echo "$(date): Running tclwebtest tests"
-  ${tclwebtest_dir}/tclwebtest -config_file $config_file tcl-api-test.test
+  if parameter_true $do_tclapi_testing; then
+      echo "$(date): Running tclwebtest tests"
+      ${tclwebtest_dir}/tclwebtest -config_file $config_file tcl-api-test.test
 
+  fi
+
+  #-------------------------------------------------------------------
+  # Vacuum analyze for PG
   if [ $database == "postgres" ]; then
-      # Run vacuum analyze
       pg_bindir=`get_config_param pg_bindir`
       db_name=`get_config_param db_name`
       echo "$(date): Beginning 'vacuum analyze'."
Index: openacs-4/etc/install/install.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/etc/install/install.tcl,v
diff -u -r1.17 -r1.18
--- openacs-4/etc/install/install.tcl	27 Nov 2003 10:54:31 -0000	1.17
+++ openacs-4/etc/install/install.tcl	8 Dec 2003 16:34:33 -0000	1.18
@@ -255,14 +255,19 @@
 set dotlrn_users_data_file "users-data.csv"
 set demo_users_password "guest"
 
-# Should links be crawled to search for broken pages? If so, specify the path
-# to start from here. To crawl the whole site, set this parameter to "/". To
-# not do any crawling, leave empty.
-set crawl_links_start_path ""
+#----------------------------------------------------------------------
+# Tcl API testing. Not recommended for production servers.
+#----------------------------------------------------------------------
+set do_tclapi_testing "no"
 
 #----------------------------------------------------------------------
 # HTTP level testing and demo data setup with tclwebtest
 #----------------------------------------------------------------------
 # A list of full paths for any additional tclwebtest scripts that should
 # be executed after install
 set tclwebtest_scripts ""
+
+# Should links be crawled to search for broken pages? If so, specify the path
+# to start from here. To crawl the whole site, set this parameter to "/". To
+# not do any crawling, leave empty.
+set crawl_links_start_path ""