mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
12 lines
268 B
Bash
Executable File
12 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
java -Xmx700m -jar corda.jar --initial-registration \
|
|
--network-root-truststore /truststore/network-root-truststore.jks \
|
|
--network-root-truststore-password '' || true
|
|
|
|
exec java -Xmx700m -jar corda.jar \
|
|
--no-local-shell \
|
|
--log-to-console
|