Author: jsisson
Date: Thu Feb 9 17:08:36 2006
New Revision: 376524
URL: http://svn.apache.org/viewcvs?rev=376524&view=rev
Log:
GERONIMO-1605 - Display PID of started process when using geronimo.sh start or startup.sh
(merged from trunk)
Modified:
geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh
Modified: geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh
URL: http://svn.apache.org/viewcvs/geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh?rev=376524&r1=376523&r2=376524&view=diff
==============================================================================
--- geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh (original)
+++ geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh Thu Feb 9 17:08:36
2006
@@ -284,7 +284,8 @@
-Djava.io.tmpdir="$GERONIMO_TMPDIR" \
-jar "$GERONIMO_HOME"/bin/server.jar $LONG_OPT "$@" \
>> $GERONIMO_OUT 2>&1 &
-
+ echo ""
+ echo "Geronimo started in background. PID: $!"
if [ ! -z "$GERONIMO_PID" ]; then
echo $! > $GERONIMO_PID
fi
|