You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2009/06/19 02:40:42 UTC

svn commit: r786342 - in /lucene/solr/trunk: build.xml example/solr/conf/solrconfig.xml

Author: yonik
Date: Fri Jun 19 00:40:42 2009
New Revision: 786342

URL: http://svn.apache.org/viewvc?rev=786342&view=rev
Log:
don't copy shell scripts into example bin

Modified:
    lucene/solr/trunk/build.xml
    lucene/solr/trunk/example/solr/conf/solrconfig.xml

Modified: lucene/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=786342&r1=786341&r2=786342&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Fri Jun 19 00:40:42 2009
@@ -575,12 +575,6 @@
        </manifest>
     </jar>
 
-    <copy todir="${example}/solr/bin">
-      <fileset dir="${src}/scripts">
-        <exclude name="scripts.conf"/>
-      </fileset>
-    </copy>
-    <chmod dir="${example}/solr/bin" perm="755" includes="**"/>
     <delete includeemptydirs="true">
       <fileset dir="${example}/work" includes="**/*"/>
     </delete>

Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?rev=786342&r1=786341&r2=786342&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Fri Jun 19 00:40:42 2009
@@ -179,7 +179,9 @@
     </autoCommit>
     -->
 
-    <!-- The RunExecutableListener executes an external command.
+
+    <!-- The RunExecutableListener executes an external command from a
+      hook such as postCommit or postOptimize.
          exe - the name of the executable to run
          dir - dir to use as the current working directory. default="."
          wait - the calling thread waits until the executable returns. default="true"
@@ -195,8 +197,7 @@
       <arr name="env"> <str>MYVAR=val1</str> </arr>
     </listener>
     -->
-    <!-- A postOptimize event is fired only after every optimize command, useful
-         in conjunction with index distribution to only distribute optimized indicies 
+    <!-- A postOptimize event is fired only after every optimize command
     <listener event="postOptimize" class="solr.RunExecutableListener">
       <str name="exe">snapshooter</str>
       <str name="dir">solr/bin</str>