[23868] in Source-Commits
/svn/athena r23478 - trunk/debathena/scripts/installer
daemon@ATHENA.MIT.EDU (Andrew M Boardman)
Fri Feb 27 11:50:44 2009
Date: Fri, 27 Feb 2009 11:49:55 -0500
From: Andrew M Boardman <amb@MIT.EDU>
Message-Id: <200902271649.n1RGntoQ016073@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: amb
Date: 2009-02-27 11:49:54 -0500 (Fri, 27 Feb 2009)
New Revision: 23478
Modified:
trunk/debathena/scripts/installer/install-athena10.sh
Log:
Correct inverted test for cluster systems.
Modified: trunk/debathena/scripts/installer/install-athena10.sh
===================================================================
--- trunk/debathena/scripts/installer/install-athena10.sh 2009-02-27 01:13:20 UTC (rev 23477)
+++ trunk/debathena/scripts/installer/install-athena10.sh 2009-02-27 16:49:54 UTC (rev 23478)
@@ -81,7 +81,7 @@
echo "determined to be of interest to MIT users, such as LaTeX. It is pretty"
echo "big (several gigabytes, possibly more)."
echo ""
-if [ cluster != $category ] ; then
+if [ cluster = $category ] ; then
echo "Cluster install detected, so installing extras."
csoft=yes
# Not setting tsoft=yes here; -cluster will pull it in anyway.