Index: unix_installer/installer-package/ant-scripts/configure-database.xml =================================================================== RCS file: /usr/local/cvsroot/unix_installer/installer-package/ant-scripts/configure-database.xml,v diff -u -r1.3 -r1.4 --- unix_installer/installer-package/ant-scripts/configure-database.xml 13 Jun 2008 04:56:14 -0000 1.3 +++ unix_installer/installer-package/ant-scripts/configure-database.xml 12 Nov 2008 03:43:18 -0000 1.4 @@ -39,6 +39,7 @@ encoding="utf8" onerror="continue"> + Index: unix_installer/installer-package/sql-scripts/removeConfigs.sql =================================================================== RCS file: /usr/local/cvsroot/unix_installer/installer-package/sql-scripts/removeConfigs.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ unix_installer/installer-package/sql-scripts/removeConfigs.sql 12 Nov 2008 03:43:18 -0000 1.1 @@ -0,0 +1,14 @@ +-- This file removes any configs left by the dump so the dump can be used +-- directly without the need to remove anything (apart from unused users) + +-- Remove configs +update lams_configuration set config_value="" where config_key="STMPServer"; +update lams_configuration set config_value="" where config_key="XmppPassword"; +update lams_configuration set config_value="ldap://192.158.1.1" where config_key="LDAPProvierURL"; + +-- From 2.2 onwards. Remove gmap key +update tl_lagmap10_configuration set config_value="" where config_key="GmapKey"; + +-- From 2.2 onwards. Ensure spreadsheet is set to disabled +update lams_learning_library set valid_flag=0 where title="SpreadSheet"; +