Author: nextgens
Date: 2006-03-31 16:25:29 +0000 (Fri, 31 Mar 2006)
New Revision: 8400

Modified:
   trunk/apps/installer/antinstall-config.xml
   trunk/apps/installer/build.xml
Log:
installer: it *works* :p

Modified: trunk/apps/installer/antinstall-config.xml
===================================================================
--- trunk/apps/installer/antinstall-config.xml  2006-03-31 16:00:09 UTC (rev 
8399)
+++ trunk/apps/installer/antinstall-config.xml  2006-03-31 16:25:29 UTC (rev 
8400)
@@ -122,6 +122,7 @@
                        force="false"/>
        </page>
        <page
+                       ifProperty="${l33t}==1"
                        type="input"
                        name="config"
                        displayText="Initial node configuration (1)">

Modified: trunk/apps/installer/build.xml
===================================================================
--- trunk/apps/installer/build.xml      2006-03-31 16:00:09 UTC (rev 8399)
+++ trunk/apps/installer/build.xml      2006-03-31 16:25:29 UTC (rev 8400)
@@ -49,10 +49,14 @@
                        <equals arg1="${nodeName}" arg2="MyFirstFreenetNode" />
                </condition>
                <condition property="Bandwidth" value="${bw}K" else="15K">
-                       <isset property="bw" />
+                       <not>
+                               <equals arg1="${bw}" arg2="" />
+                       </not>
                </condition>
                <condition property="DataStoreSize" value="${dsSize}G" 
else="1G">
-                       <isset property="dsSize" />
+                       <not>
+                               <equals arg1="${dsSize}" arg2="" />
+                       </not>
                </condition>
                <condition property="Port" value="${portNumber}" else="-1">
                        <isset property="portNumber" />


Reply via email to