Index: openacs-4/etc/install/install.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/etc/install/install.tcl,v
diff -u -r1.25 -r1.26
--- openacs-4/etc/install/install.tcl	24 Feb 2004 10:48:58 -0000	1.25
+++ openacs-4/etc/install/install.tcl	24 Feb 2004 14:22:01 -0000	1.26
@@ -164,6 +164,19 @@
 set system_user               "system"
 set system_user_password      "manager"
 
+#----------------------------------------------------------------------
+# XML Report settings.
+#----------------------------------------------------------------------
+
+# An XML report file will be generated by the installation scripts. Such
+# a file may be used by a master install server to report on the install
+# results of one or more other servers.
+
+# A text describing the purpose of the server. Must be XML quoted (for example may not contain any
+# <, or > signs).
+set server_description ""
+
+
 #######################################################################
 # System settings
 #
@@ -184,6 +197,12 @@
 # AOLserver's home directory
 set aolserver_home            "/usr/local/aolserver"
 
+# The directory the xml report of the installation should be copied to with scp. Use
+# a local absolute path if you want a local copy. Leave empty if you don't want the xml
+# report copied anywhere. Example values: 
+# /var/log/openacs-install
+# me@test.mycompany.com:/var/log/openacs-install
+set report_scp_target "/var/log/openacs-install"
 
 #----------------------------------------------------------------------
 # Settings for starting and stopping the server
@@ -292,10 +311,3 @@
 # 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 ""
-
-# The directory the xml report of the installation should be copied to with scp. Use
-# a local absolute path if you want a local copy. Leave empty if you don't want the xml
-# report copied anywhere. Example values: 
-# /var/log/openacs-install
-# me@test.mycompany.com:/var/log/openacs-install
-set report_scp_target "/var/log/openacs-install"