mirror of
https://github.com/optim-enterprises-bv/siembol.git
synced 2025-11-02 11:28:15 +00:00
Upgrading Storm to 2.3.0 Supporting downloading http enrichment tables Remove multiline string dependency
9 lines
293 B
Bash
Executable File
9 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# if command starts with something that is not executable, prepend our deploy command
|
|
if ! which "${1}" >/dev/null; then
|
|
set -- storm jar $TOPOLOGY_JAR $TOPOLOGY_CLASS "$@" -c nimbus.seeds="${NIMBUS_SEEDS:-"[\"nimbus\"]"}" -c nimbus.thrift.port=${NIMBUS_PORT:-6627}
|
|
fi
|
|
|
|
exec "$@"
|