mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
9 lines
No EOL
305 B
Bash
9 lines
No EOL
305 B
Bash
#!/bin/sh
|
|
if [ -z "$P2P_JMX_PORT"] ; then
|
|
P2P_JMX_PORT=6789
|
|
fi
|
|
exec ${JAVA_HOME}/bin/java -Dcom.sun.management.jmxremote \
|
|
-Dcom.sun.management.jmxremote.port=${P2P_JMX_PORT} \
|
|
-Dcom.sun.management.jmxremote.authenticate=false \
|
|
-Dcom.sun.management.jmxremote.ssl=false \
|
|
-jar p2pproxy.jar $* |