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