You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2016/08/15 05:36:30 UTC

svn commit: r1756350 - /ofbiz/trunk/tools/rc.ofbiz.for.ubuntu

Author: jleroux
Date: Mon Aug 15 05:36:30 2016
New Revision: 1756350

URL: http://svn.apache.org/viewvc?rev=1756350&view=rev
Log:
Updates Ubuntu script  with respect to Gradle changes

Modified:
    ofbiz/trunk/tools/rc.ofbiz.for.ubuntu

Modified: ofbiz/trunk/tools/rc.ofbiz.for.ubuntu
URL: http://svn.apache.org/viewvc/ofbiz/trunk/tools/rc.ofbiz.for.ubuntu?rev=1756350&r1=1756349&r2=1756350&view=diff
==============================================================================
--- ofbiz/trunk/tools/rc.ofbiz.for.ubuntu (original)
+++ ofbiz/trunk/tools/rc.ofbiz.for.ubuntu Mon Aug 15 05:36:30 2016
@@ -90,7 +90,7 @@ checkUser() {
 
 # OFBiz processes running
 running() {
-    OFBIZ_PROCS=`/bin/ps h -o pid,args -C java -u $OFBIZUSER | /bin/grep -e "-jar ofbiz.jar" | /bin/egrep -o "^[[:space:]]*[[:digit:]]*"`
+    OFBIZ_PROCS=`/bin/ps h -o pid,args -C java -u $OFBIZUSER | /bin/grep -e "-jar build/libs/ofbiz.jar" | /bin/egrep -o "^[[:space:]]*[[:digit:]]*"`
 }
 
 #========= main program ===============