test agent_path

This commit is contained in:
Your Name 2025-05-17 12:27:29 +12:00
parent ef2e6192ab
commit dd149dab6f
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/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

View File

@ -1,4 +1,5 @@
#!/bin/bash
[ ! -z "$AGENT_PATH" ] || { echo "AGENT_PATH is not set"; exit 1; }
source "${AGENT_PATH}/_common.sh"
_check_required_env_vars "CONTAINER_NAME"