blob: de499a9b649474b68e46feb02e22835f9698c852 (
plain)
1
2
3
4
|
#!/bin/bash
jar=$(find -maxdepth 1 -type f -name '{{ pillar["workflow_server"]["jar_name"] }}*' | awk -F/ '{print $2}')
exec java ${@} -jar ${jar} run com.talligent.openbook.verticle.Startup --cluster
|