Index: openacs-4/etc/install/install.sh =================================================================== RCS file: /usr/local/cvsroot/openacs-4/etc/install/install.sh,v diff -u -r1.14 -r1.15 --- openacs-4/etc/install/install.sh 10 Sep 2003 11:10:09 -0000 1.14 +++ openacs-4/etc/install/install.sh 17 Sep 2003 08:20:23 -0000 1.15 @@ -151,6 +151,7 @@ svscan_sourcedir=`get_config_param svscan_sourcedir` server_url=`get_config_param server_url` error_log_file=`get_config_param error_log_file` +install_error_file=`get_config_param install_error_file` tclwebtest_dir=`get_config_param tclwebtest_dir` stop_server_command=`get_config_param stop_server_command` start_server_command=`get_config_param start_server_command` @@ -346,12 +347,12 @@ if [ -r ${error_log_file} ]; then seconds_since_installation_start=$(expr $(date +%s) - $installation_start_time) minutes_since_installation_start=$(expr $seconds_since_installation_start / 60 + 1) - log_error_file=${serverroot}/log/error.log - ./aolserver-errors.pl -${minutes_since_installation_start}m ${error_log_file} > $log_error_file - error_line_count=$(wc -l $log_error_file | awk '{print $1}') + + ./aolserver-errors.pl -${minutes_since_installation_start}m ${error_log_file} > ${install_error_file} + error_line_count=$(wc -l $install_error_file | awk '{print $1}') if expr $error_line_count \> 1 &> /dev/null; then alert_keyword=`get_config_param alert_keyword` - echo "$0: ${alert_keyword} - There are error messages in the log file, they are stored in $log_error_file" + echo "$0: ${alert_keyword} - There are error messages in the log file, they are stored in $install_error_file" fi else echo "$0: Log file ${error_log_file} not readable - cannot check for errors" Index: openacs-4/etc/install/tclwebtest-functions.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/etc/install/Attic/tclwebtest-functions.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/etc/install/tclwebtest-functions.tcl 8 Sep 2003 05:48:00 -0000 1.2 +++ openacs-4/etc/install/tclwebtest-functions.tcl 17 Sep 2003 08:20:23 -0000 1.3 @@ -165,7 +165,7 @@ # Login the user form find ~n login - field find ~n username + field find ~n email field fill "$user_email" field find ~n password field fill "$user_password"