20 lines
543 B
Bash
20 lines
543 B
Bash
#!/bin/bash
|
|
source "${AGENT_PATH}/_common.sh"
|
|
_check_required_env_vars "CONFIG_PATH"
|
|
|
|
# PORT SCRIPT
|
|
# The port script is OPTIONAL.
|
|
# It is used to return the ports used by the service.
|
|
# It is called with the path to the server specific env file as an argument.
|
|
|
|
|
|
# Required environment variables
|
|
|
|
# determine port.
|
|
command -v jq &> /dev/null || _die "jq could not be found, please install it"
|
|
[ -f "${CONFIG_PATH}/sos_config.json" ] || _die "sos_config.json does not exist"
|
|
PORT=$(jq -r '.port' "${CONFIG_PATH}/sos_config.json")
|
|
|
|
echo $PORT
|
|
|