10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
[ ! -z "$AGENT_PATH" ] || { echo "AGENT_PATH is not set"; exit 1; }
|
|
source "${AGENT_PATH}/common.sh"
|
|
|
|
_check_required_env_vars "HOST_PORT"
|
|
|
|
# Nginx Example Ports Script
|
|
|
|
echo $HOST_PORT
|