|
From: <rm...@hy...> - 2007-03-08 23:55:47
|
Author: rmorgan Date: 2007-03-08 15:55:43 -0800 (Thu, 08 Mar 2007) New Revision: 3678 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3678 Modified: trunk/etc/build.properties trunk/installer/bin/hq-setup.bat trunk/installer/bin/hq-setup.sh Log: Remove obsolete HA settings. Modified: trunk/etc/build.properties =================================================================== --- trunk/etc/build.properties 2007-03-08 23:52:21 UTC (rev 3677) +++ trunk/etc/build.properties 2007-03-08 23:55:43 UTC (rev 3678) @@ -79,16 +79,6 @@ # on new schema changes, things may break. hq.schema.target.version=LATEST -# HighAvail setting. This must be one of the following: -# standalone : non-clustered server -# cluster-master : cluster master (one of these per cluster) -# cluster-gui : clustered server acting as a GUI node -# cluster-dataprocessor : clustered server as an agent-data processing node -# This setting gets expressed in the highavail mbean's jboss-service.xml file, -# the replacement is done in the pack-ear task (or for installable releases, at -# install-time). -server.cluster.mode=standalone - # Tablespace configuration # By default, all these are "DEFAULT" which means DBSetup will ignore the # tablespace property and just use whatever default tablespace is configured Modified: trunk/installer/bin/hq-setup.bat =================================================================== --- trunk/installer/bin/hq-setup.bat 2007-03-08 23:52:21 UTC (rev 3677) +++ trunk/installer/bin/hq-setup.bat 2007-03-08 23:55:43 UTC (rev 3678) @@ -49,7 +49,6 @@ if "%1"=="-postgresql" SET INSTALL_MODE=postgresql if "%1"=="-mysql" SET INSTALL_MODE=mysql if "%1"=="-full" SET INSTALL_MODE=full -if "%1"=="-highavail" SET INSTALL_MODE=highavail rem Didn't match an option, assume it if the file we use if not "%INSTALL_MODE%"=="quick" goto finishArgs if not "%1"=="" set SETUP_FILE=%1 Modified: trunk/installer/bin/hq-setup.sh =================================================================== --- trunk/installer/bin/hq-setup.sh 2007-03-08 23:52:21 UTC (rev 3677) +++ trunk/installer/bin/hq-setup.sh 2007-03-08 23:55:43 UTC (rev 3678) @@ -97,8 +97,6 @@ INSTALL_MODE=oracle elif [ "x${1}" = "x-postgresql" ] ; then INSTALL_MODE=postgresql - elif [ "x${1}" = "x-highavail" ] ; then - INSTALL_MODE=highavail else SETUP_FILE="${1}" fi |