blob: 9c4e929511cc1a8beadfcc3eaf4d7387d335b855 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
if [ "${1}" == "debug" ]; then
args="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5004"
else
args=""
fi
jar=$(find -maxdepth 1 -type f -name '{{ pillar["admin_web_ui"]["jar_name"] }}*' | awk -F/ '{print $2}')
exec java ${args} -jar ${jar} run com.talligent.openbook.verticle.Startup --cluster
|