Return-Path: X-Original-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7F768A2C7 for ; Fri, 16 Dec 2011 02:13:42 +0000 (UTC) Received: (qmail 58670 invoked by uid 500); 16 Dec 2011 02:13:42 -0000 Delivered-To: apmail-incubator-connectors-commits-archive@incubator.apache.org Received: (qmail 58629 invoked by uid 500); 16 Dec 2011 02:13:42 -0000 Mailing-List: contact connectors-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: connectors-dev@incubator.apache.org Delivered-To: mailing list connectors-commits@incubator.apache.org Received: (qmail 58622 invoked by uid 99); 16 Dec 2011 02:13:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 02:13:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 02:13:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 733C723888CD; Fri, 16 Dec 2011 02:13:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1215025 - in /incubator/lcf/trunk: CHANGES.txt framework/example-multiprocess/initialize.sh framework/example-multiprocess/lock-clean.sh framework/example-multiprocess/start-agents.sh framework/example-multiprocess/stop-agents.sh Date: Fri, 16 Dec 2011 02:13:17 -0000 To: connectors-commits@incubator.apache.org From: shinichiro@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111216021317.733C723888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: shinichiro Date: Fri Dec 16 02:13:16 2011 New Revision: 1215025 URL: http://svn.apache.org/viewvc?rev=1215025&view=rev Log: Fix for CONNECTORS-323 Modified: incubator/lcf/trunk/CHANGES.txt incubator/lcf/trunk/framework/example-multiprocess/initialize.sh incubator/lcf/trunk/framework/example-multiprocess/lock-clean.sh incubator/lcf/trunk/framework/example-multiprocess/start-agents.sh incubator/lcf/trunk/framework/example-multiprocess/stop-agents.sh Modified: incubator/lcf/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1215025&r1=1215024&r2=1215025&view=diff ============================================================================== --- incubator/lcf/trunk/CHANGES.txt (original) +++ incubator/lcf/trunk/CHANGES.txt Fri Dec 16 02:13:16 2011 @@ -5,6 +5,9 @@ $Id$ ======================= Release 0.4 ========================= +CONNECTORS-323: Fix *.sh files in multiprocess-example. +(Shinichiro Abe) + CONNECTORS-313: Reorganize the dist directory to include a multiprocess example as well as a single process example. (Shinichiro Abe, Karl Wright) Modified: incubator/lcf/trunk/framework/example-multiprocess/initialize.sh URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/framework/example-multiprocess/initialize.sh?rev=1215025&r1=1215024&r2=1215025&view=diff ============================================================================== --- incubator/lcf/trunk/framework/example-multiprocess/initialize.sh (original) +++ incubator/lcf/trunk/framework/example-multiprocess/initialize.sh Fri Dec 16 02:13:16 2011 @@ -19,8 +19,8 @@ if [ -e "$JAVA_HOME"/bin/java ] ; then if [ -f ./properties.xml ] ; then # Set the MCF_HOME variable - set MCF_HOME=$PWD - processes/script/executecommand org.apache.manifoldcf.crawler.InitializeAndRegister + export MCF_HOME=$PWD + processes/script/executecommand.sh org.apache.manifoldcf.crawler.InitializeAndRegister exit $? else Modified: incubator/lcf/trunk/framework/example-multiprocess/lock-clean.sh URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/framework/example-multiprocess/lock-clean.sh?rev=1215025&r1=1215024&r2=1215025&view=diff ============================================================================== --- incubator/lcf/trunk/framework/example-multiprocess/lock-clean.sh (original) +++ incubator/lcf/trunk/framework/example-multiprocess/lock-clean.sh Fri Dec 16 02:13:16 2011 @@ -19,8 +19,8 @@ if [ -e "$JAVA_HOME"/bin/java ] ; then if [ -f ./properties.xml ] ; then # Set the MCF_HOME variable - set MCF_HOME=$PWD - processes/script/executecommand org.apache.manifoldcf.core.LockClean + export MCF_HOME=$PWD + processes/script/executecommand.sh org.apache.manifoldcf.core.LockClean exit $? else Modified: incubator/lcf/trunk/framework/example-multiprocess/start-agents.sh URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/framework/example-multiprocess/start-agents.sh?rev=1215025&r1=1215024&r2=1215025&view=diff ============================================================================== --- incubator/lcf/trunk/framework/example-multiprocess/start-agents.sh (original) +++ incubator/lcf/trunk/framework/example-multiprocess/start-agents.sh Fri Dec 16 02:13:16 2011 @@ -19,8 +19,8 @@ if [ -e "$JAVA_HOME"/bin/java ] ; then if [ -f ./properties.xml ] ; then # Set the MCF_HOME variable - set MCF_HOME=$PWD - processes/script/executecommand org.apache.manifoldcf.agents.AgentRun + export MCF_HOME=$PWD + processes/script/executecommand.sh org.apache.manifoldcf.agents.AgentRun exit $? else Modified: incubator/lcf/trunk/framework/example-multiprocess/stop-agents.sh URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/framework/example-multiprocess/stop-agents.sh?rev=1215025&r1=1215024&r2=1215025&view=diff ============================================================================== --- incubator/lcf/trunk/framework/example-multiprocess/stop-agents.sh (original) +++ incubator/lcf/trunk/framework/example-multiprocess/stop-agents.sh Fri Dec 16 02:13:16 2011 @@ -19,8 +19,8 @@ if [ -e "$JAVA_HOME"/bin/java ] ; then if [ -f ./properties.xml ] ; then # Set the MCF_HOME variable - set MCF_HOME=$PWD - processes/script/executecommand org.apache.manifoldcf.agents.AgentStop + export MCF_HOME=$PWD + processes/script/executecommand.sh org.apache.manifoldcf.agents.AgentStop exit $? else