You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by Yonik Seeley <yo...@apache.org> on 2006/12/16 22:58:57 UTC

[VOTE] release Apache Solr 1.1.0

Thanks to everyone for all the work that went into making this release so far!
I have posted a candidate release at
http://people.apache.org/~yonik/solr/staging_area/

Please vote on releasing these packages as Apache Solr 1.1.0.
The vote is open for the next 72 hours, and passes if at least three +1 votes
are cast.  Then the Apache Incubator must vote to allow this release.

[ ] +1 Release the packages as Apache Solr 1.1.0
[ ] -1 Do not release the packages because...

-Yonik

Re: Re: [VOTE] release Apache Solr 1.1.0

Posted by Mike Klaas <mi...@gmail.com>.
+1

On 12/17/06, Bill Au <bi...@gmail.com> wrote:
> +1
>
> Bill
>
> On 12/17/06, Erik Hatcher <er...@ehatchersolutions.com> wrote:
> > A belated +1
> >
> >
> > On Dec 16, 2006, at 4:58 PM, Yonik Seeley wrote:
> >
> > > Thanks to everyone for all the work that went into making this
> > > release so far!
> > > I have posted a candidate release at
> > > http://people.apache.org/~yonik/solr/staging_area/
> > >
> > > Please vote on releasing these packages as Apache Solr 1.1.0.
> > > The vote is open for the next 72 hours, and passes if at least
> > > three +1 votes
> > > are cast.  Then the Apache Incubator must vote to allow this release.
> > >
> > > [ ] +1 Release the packages as Apache Solr 1.1.0
> > > [ ] -1 Do not release the packages because...
> > >
> > > -Yonik
> >
> >
>

Re: Re: [VOTE] release Apache Solr 1.1.0

Posted by Bill Au <bi...@gmail.com>.
+1

Bill

On 12/17/06, Erik Hatcher <er...@ehatchersolutions.com> wrote:
> A belated +1
>
>
> On Dec 16, 2006, at 4:58 PM, Yonik Seeley wrote:
>
> > Thanks to everyone for all the work that went into making this
> > release so far!
> > I have posted a candidate release at
> > http://people.apache.org/~yonik/solr/staging_area/
> >
> > Please vote on releasing these packages as Apache Solr 1.1.0.
> > The vote is open for the next 72 hours, and passes if at least
> > three +1 votes
> > are cast.  Then the Apache Incubator must vote to allow this release.
> >
> > [ ] +1 Release the packages as Apache Solr 1.1.0
> > [ ] -1 Do not release the packages because...
> >
> > -Yonik
>
>

Re: [VOTE] release Apache Solr 1.1.0

Posted by Erik Hatcher <er...@ehatchersolutions.com>.
A belated +1


On Dec 16, 2006, at 4:58 PM, Yonik Seeley wrote:

> Thanks to everyone for all the work that went into making this  
> release so far!
> I have posted a candidate release at
> http://people.apache.org/~yonik/solr/staging_area/
>
> Please vote on releasing these packages as Apache Solr 1.1.0.
> The vote is open for the next 72 hours, and passes if at least  
> three +1 votes
> are cast.  Then the Apache Incubator must vote to allow this release.
>
> [ ] +1 Release the packages as Apache Solr 1.1.0
> [ ] -1 Do not release the packages because...
>
> -Yonik


Re: [VOTE] release Apache Solr 1.1.0

Posted by Yonik Seeley <yo...@apache.org>.
This vote passed, and I've started a vote on the Incubator list.
Anyone who is a member of the Incubator PMC, please remember to vote there.
Anyone who is a mentor of any currently incubating project is
automatically a PMC member (Erik, Yoav, Doug, Bertrand)

Thanks!

On 12/16/06, Yonik Seeley <yo...@apache.org> wrote:
> Thanks to everyone for all the work that went into making this release so far!
> I have posted a candidate release at
> http://people.apache.org/~yonik/solr/staging_area/
>
> Please vote on releasing these packages as Apache Solr 1.1.0.
> The vote is open for the next 72 hours, and passes if at least three +1 votes
> are cast.  Then the Apache Incubator must vote to allow this release.
>
> [ ] +1 Release the packages as Apache Solr 1.1.0
> [ ] -1 Do not release the packages because...
>
> -Yonik

Re: [VOTE] release Apache Solr 1.1.0

Posted by Chris Hostetter <ho...@fucit.org>.
: Sigh... it looks the the tar task in ant does not preserve file permissions.
: It looks like the mode 755 needs to be set explicitly in the task.
:
: Should we do a respin with just that change and continue the vote?

Since there's no way to preserve the executable bits in the .zip
anyway, i don't think not having them set in the .tgz is a show stopper.

The patch below solves the problem, i've commited to the trunk.

Index: build.xml
===================================================================
--- build.xml   (revision 488047)
+++ build.xml   (working copy)
@@ -412,9 +412,13 @@
       <tarfileset dir="."
         prefix="${fullnamever}"
         includes="LICENSE.txt NOTICE.txt *.txt *.xml lib/** src/** example/**"
-        excludes="**/data/ **/logs/ **/classes/" />
+        excludes="**/data/ **/logs/ **/classes/ **/*.sh **/bin/ src/scripts/" />
       <tarfileset dir="."
+        mode="755"
         prefix="${fullnamever}"
+        includes="**/*.sh **/bin/ src/scripts/" />
+      <tarfileset dir="."
+        prefix="${fullnamever}"
         includes="dist/*.jar dist/*.war" />
       <tarfileset dir="${build.docs}"
         prefix="${fullnamever}/docs/" />



Re: [VOTE] release Apache Solr 1.1.0

Posted by Yonik Seeley <yo...@apache.org>.
On 12/17/06, Bertrand Delacretaz <bd...@apache.org> wrote:
> On 12/16/06, Yonik Seeley <yo...@apache.org> wrote:
>
> > ...I have posted a candidate release at
> > http://people.apache.org/~yonik/solr/staging_area/...
>
> I noticed that none of the scripts (post.sh and the ones in
> example/solr/bin/) have the executable bit set, although it its set in
> SVN. Dunno how this works when cutting a release under cygwin, maybe
> the ant chmod task would help?

The svn:executable property is set, and the directory I built from
shows the correct permissions.

Sigh... it looks the the tar task in ant does not preserve file permissions.
It looks like the mode 755 needs to be set explicitly in the task.

Should we do a respin with just that change and continue the vote?

-Yonik

Re: [VOTE] release Apache Solr 1.1.0

Posted by Bertrand Delacretaz <bd...@apache.org>.
On 12/16/06, Yonik Seeley <yo...@apache.org> wrote:

> ...I have posted a candidate release at
> http://people.apache.org/~yonik/solr/staging_area/...

I noticed that none of the scripts (post.sh and the ones in
example/solr/bin/) have the executable bit set, although it its set in
SVN. Dunno how this works when cutting a release under cygwin, maybe
the ant chmod task would help?

-Bertrand

Re: [VOTE] release Apache Solr 1.1.0

Posted by Yoav Shapira <yo...@apache.org>.
Hi,
OK.  Quick testing and RAT run look mostly very good: +1 from me for
the release.  Kudos.

On 12/16/06, Yonik Seeley <yo...@apache.org> wrote:
>  - generated site files from forrest (the source files do have the ASL)

It might be nice to add those for future releases, not urgent, just a
minor note.

Yoav

Re: [VOTE] release Apache Solr 1.1.0

Posted by Yonik Seeley <yo...@apache.org>.
On 12/16/06, Yoav Shapira <yo...@apache.org> wrote:
> Did you have a chance to run RAT against the release candidate?

Yes.  Below is the file list with ASL, JDOC and B (binary) lines
removed to make the size manageable.

All of the !????? files are either:
 - CHANGES.txt, which IMO is in the same category as README, NOTICE,
and LICENSE (the "N" for notice category) and shouldn't need the ASL
header.  These are our release notes, and no other ASF release I
looked at had the ASL header for this.
 - generated site files from forrest (the source files do have the ASL)
 - files under a different license, and referenced in NOTICE.txt

-Yonik


Analysing Documents...
*****************************************************
Notes:    8
Binaries: 58
Archives: 20
Standards: 692
  301 Apache Licensed


  369 Generated Documents
JavaDocs are generated and so license header is optional

  22 Unknown Licenses


*******************************

Archives (+ indicates readable, $ unreadable):

 + apache-solr-1.1.0-incubating.jar
 + apache-solr-1.1.0-incubating.war
 + start.jar
 + ant.jar
 + commons-el.jar
 + commons-logging.jar
 + jasper-compiler.jar
 + jasper-runtime.jar
 + mx4j-remote.jar
 + mx4j-tools.jar
 + mx4j.jar
 + javax.servlet.jar
 + org.mortbay.jetty.jar
 + org.mortbay.jmx.jar
 + solr.war
 + lucene-core-nightly.jar
 + lucene-highlighter-nightly.jar
 + lucene-snowball-nightly.jar
 + servlet-api-2.4.jar
 + xpp3-1.1.3.4.O.jar


*****************************************************
  Compressed archives will be marked A
  Notices, licenses etc will be marked N


D       f:\code\wip\apache-solr-1.1.0-incubating
 !????? CHANGES.txt
  N     KEYS.txt
  N     LICENSE.txt
  N     NOTICE.txt
  N     README.txt
D       f:\code\wip\apache-solr-1.1.0-incubating\dist
  A      apache-solr-1.1.0-incubating.jar
  A      apache-solr-1.1.0-incubating.war
D       f:\code\wip\apache-solr-1.1.0-incubating\docs
 !????? .htaccess
 !????? features.html
 !????? index.html
 !????? issue_tracking.html
 !????? linkmap.html
 !????? mailing_lists.html
 !????? tutorial.html
 !????? version_control.html
 !????? who.html
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api
 !????? package-list
 !????? stylesheet.css
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\analysis
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\analysis\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\core
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\core\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\request
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\request\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\schema
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\schema\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\search
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\search\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\search\function
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\search\function\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\servlet
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\servlet\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\tst
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\tst\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\update
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\update\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\doc-files
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\test
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\test\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\xslt
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\org\apache\solr\util\xslt\class-use
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\api\resources
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\images
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\skin
 !????? note.txt
 !????? profile.css
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\skin\css
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\skin\images
  N     README.txt
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\skin\scripts
D       f:\code\wip\apache-solr-1.1.0-incubating\docs\skin\translations
D       f:\code\wip\apache-solr-1.1.0-incubating\example
  N     README.txt
  A      start.jar
D       f:\code\wip\apache-solr-1.1.0-incubating\example\etc
 !????? LICENSE.javax.servlet.txt
 !????? LICENSE.javax.xml.html
 !????? LICENSE.jsse.txt
 !????? admin.xml
 !????? jetty-jmx.xml
 !????? jetty.xml
 !????? webdefault.xml
D       f:\code\wip\apache-solr-1.1.0-incubating\example\exampledocs
D       f:\code\wip\apache-solr-1.1.0-incubating\example\ext
  A      ant.jar
  A      commons-el.jar
  A      commons-logging.jar
  A      jasper-compiler.jar
  A      jasper-runtime.jar
  A      mx4j-remote.jar
  A      mx4j-tools.jar
  A      mx4j.jar
D       f:\code\wip\apache-solr-1.1.0-incubating\example\lib
  A      javax.servlet.jar
  A      org.mortbay.jetty.jar
  A      org.mortbay.jmx.jar
D       f:\code\wip\apache-solr-1.1.0-incubating\example\lib\jsp
D       f:\code\wip\apache-solr-1.1.0-incubating\example\solr
  N     README.txt
D       f:\code\wip\apache-solr-1.1.0-incubating\example\solr\bin
D       f:\code\wip\apache-solr-1.1.0-incubating\example\solr\conf
D       f:\code\wip\apache-solr-1.1.0-incubating\example\solr\conf\xslt
D       f:\code\wip\apache-solr-1.1.0-incubating\example\webapps
  A      solr.war
D       f:\code\wip\apache-solr-1.1.0-incubating\lib
  A      lucene-core-nightly.jar
  A      lucene-highlighter-nightly.jar
  A      lucene-snowball-nightly.jar
  A      servlet-api-2.4.jar
  A      xpp3-1.1.3.4.O.jar
D       f:\code\wip\apache-solr-1.1.0-incubating\src
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\analysis
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\core
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\request
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\schema
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\search
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\search\function
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\tst
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\update
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\util
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\util\doc-files
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\util\test
D       f:\code\wip\apache-solr-1.1.0-incubating\src\java\org\apache\solr\util\xslt
D       f:\code\wip\apache-solr-1.1.0-incubating\src\scripts
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site\src
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site\src\documentation
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site\src\documentation\content
 !????? .htaccess
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site\src\documentation\content\xdocs
D       f:\code\wip\apache-solr-1.1.0-incubating\src\site\src\documentation\content\xdocs\images
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache\solr
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache\solr\analysis
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache\solr\search
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache\solr\update
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\org\apache\solr\util
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\test-files
  N     README
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\test-files\solr
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\test-files\solr\conf
D       f:\code\wip\apache-solr-1.1.0-incubating\src\test\test-files\solr\conf\xslt
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\WEB-INF
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\resources
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\resources\admin
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\src
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\src\org
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\src\org\apache
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\src\org\apache\solr
D       f:\code\wip\apache-solr-1.1.0-incubating\src\webapp\src\org\apache\solr\servlet

Re: [VOTE] release Apache Solr 1.1.0

Posted by Yoav Shapira <yo...@apache.org>.
Did you have a chance to run RAT against the release candidate?

Yoav

On 12/16/06, Yonik Seeley <yo...@apache.org> wrote:
> Thanks to everyone for all the work that went into making this release so far!
> I have posted a candidate release at
> http://people.apache.org/~yonik/solr/staging_area/
>
> Please vote on releasing these packages as Apache Solr 1.1.0.
> The vote is open for the next 72 hours, and passes if at least three +1 votes
> are cast.  Then the Apache Incubator must vote to allow this release.
>
> [ ] +1 Release the packages as Apache Solr 1.1.0
> [ ] -1 Do not release the packages because...
>
> -Yonik
>

Re: [VOTE] release Apache Solr 1.1.0

Posted by Bertrand Delacretaz <bd...@apache.org>.
On 12/17/06, Yonik Seeley <yo...@apache.org> wrote:
> OK, I did a respin with *only* changes to build.xml to change the
> executable bits of scripts....

Thanks! The executable bits are even set when expanding (on macosx)
the zip file, didn't expect this to work.

I have checked the signatures and md5, here's my +1 for the release.

-Bertrand

Re: [VOTE] release Apache Solr 1.1.0

Posted by Yonik Seeley <yo...@apache.org>.
OK, I did a respin with *only* changes to build.xml to change the
executable bits of scripts.

I've replaced the files in http://people.apache.org/~yonik/solr/staging_area/
and moved the previous ones to http://people.apache.org/~yonik/solr/spin1

I verified the new signatures and md5sums, and the diffs below verify
that all the files are still there, and the war and jars probably
differ because of timestamps.

#diff of spin1 (original) and spin2 .tgz archives
$ diff -r spin1/apache-solr-1.1.0-incubating
spin2/apache-solr-1.1.0-incubating | grep spin1 | grep -v "docs/api"
diff -r spin1/apache-solr-1.1.0-incubating/build.xml
spin2/apache-solr-1.1.0-incubating/build.xml
Files spin1/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.jar
and spin2/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.jar
differ
Files spin1/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.war
and spin2/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.war
differ
Files spin1/apache-solr-1.1.0-incubating/example/webapps/solr.war and
spin2/apache-solr-1.1.0-incubating/example/webapps/solr.war differ


#diff of spin1 (original) and spin2 .zip archives
$ diff -r spin1/apache-solr-1.1.0-incubating
spin2/apache-solr-1.1.0-incubating | grep spin1 | grep -v "docs/api"
diff -r spin1/apache-solr-1.1.0-incubating/build.xml
spin2/apache-solr-1.1.0-incubating/build.xml
Files spin1/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.jar
and spin2/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.jar
differ
Files spin1/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.war
and spin2/apache-solr-1.1.0-incubating/dist/apache-solr-1.1.0-incubating.war
differ
Files spin1/apache-solr-1.1.0-incubating/example/webapps/solr.war and
spin2/apache-solr-1.1.0-incubating/example/webapps/solr.war differ

Verification of executable bits:
Yonik@spidey /cygdrive/f/code/wip/spin2
$ tar tvzf apache-solr-1.1.0-incubating.tgz | grep '\-rwx'
-rwxr-xr-x 0/0            1096 2006-12-16 16:34
apache-solr-1.1.0-incubating/example/exampledocs/post.sh
-rwxr-xr-x 0/0            4161 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/abc
-rwxr-xr-x 0/0            4163 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/abo
-rwxr-xr-x 0/0            2680 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/backup
-rwxr-xr-x 0/0            3258 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/backupcleaner
-rwxr-xr-x 0/0            2803 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/commit
-rwxr-xr-x 0/0            2821 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/optimize
-rwxr-xr-x 0/0            2843 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/readercycle
-rwxr-xr-x 0/0            1758 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/rsyncd-disable
-rwxr-xr-x 0/0            1746 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/rsyncd-enable
-rwxr-xr-x 0/0            3508 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/rsyncd-start
-rwxr-xr-x 0/0            2295 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/rsyncd-stop
-rwxr-xr-x 0/0            1878 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/scripts-util
-rwxr-xr-x 0/0            3443 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snapcleaner
-rwxr-xr-x 0/0            4627 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snapinstaller
-rwxr-xr-x 0/0            7277 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snappuller
-rwxr-xr-x 0/0            1774 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snappuller-disable
-rwxr-xr-x 0/0            1776 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snappuller-enable
-rwxr-xr-x 0/0            2624 2006-12-16 16:44
apache-solr-1.1.0-incubating/example/solr/bin/snapshooter
-rwxr-xr-x 0/0            4161 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/abc
-rwxr-xr-x 0/0            4163 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/abo
-rwxr-xr-x 0/0            2680 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/backup
-rwxr-xr-x 0/0            3258 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/backupcleaner
-rwxr-xr-x 0/0            2803 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/commit
-rwxr-xr-x 0/0            2821 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/optimize
-rwxr-xr-x 0/0            2843 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/readercycle
-rwxr-xr-x 0/0            1758 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/rsyncd-disable
-rwxr-xr-x 0/0            1746 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/rsyncd-enable
-rwxr-xr-x 0/0            3508 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/rsyncd-start
-rwxr-xr-x 0/0            2295 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/rsyncd-stop
-rwxr-xr-x 0/0            1878 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/scripts-util
-rwxr-xr-x 0/0            3443 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snapcleaner
-rwxr-xr-x 0/0            4627 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snapinstaller
-rwxr-xr-x 0/0            7277 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snappuller
-rwxr-xr-x 0/0            1774 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snappuller-disable
-rwxr-xr-x 0/0            1776 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snappuller-enable
-rwxr-xr-x 0/0            2624 2006-12-16 16:34
apache-solr-1.1.0-incubating/src/scripts/snapshooter


-Yonik

Re: [VOTE] release Apache Solr 1.1.0

Posted by Chris Hostetter <ho...@fucit.org>.

+1 .. with or without the executible bits set on the scripts


-Hoss