Index: openacs-4/packages/acs-bootstrap-installer/installer/install.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/install.tcl,v diff -u -N -r1.6.2.1 -r1.6.2.2 --- openacs-4/packages/acs-bootstrap-installer/installer/install.tcl 25 Nov 2003 14:15:13 -0000 1.6.2.1 +++ openacs-4/packages/acs-bootstrap-installer/installer/install.tcl 11 Dec 2003 02:12:27 -0000 1.6.2.2 @@ -161,13 +161,22 @@ # We're done - kill the server (will restart if server is setup properly) ad_schedule_proc -thread t -once t 1 ns_shutdown +set post_installation_message \ + [parameter::get_from_package_key -package_key acs-bootstrap-installer \ + -parameter post_installation_message \ + -default ""] + ns_write "Installation finished

The server has been shut down. Normally, it should come back up by itself after a minute or so.

-

If not, please check your server error log, or contact your system administrator.

+

If not, please check your server error log, or contact your system administrator.

" -

When the server is back up you can visit the site-wide administration pages

+if { ![string equal $post_installation_message ""] } { + ns_write $post_installation_message +} else { + ns_write " +

When the server is back up you can visit the site-wide administration pages

" +} -[install_footer] -" +ns_write [install_footer]