GitHub bot: fix linting issues (nobuild)

This commit is contained in:
github-actions
2025-07-16 21:01:48 +00:00
parent 4758d8feb5
commit d5458e0e18

View File

@@ -87,10 +87,12 @@ start_postgres() {
wait_postgres_ready() { wait_postgres_ready() {
local host port local host port
if $USE_EXTERNAL_DB; then if $USE_EXTERNAL_DB; then
host="$DB_HOST_EXT"; port="$DB_PORT_EXT" host="$DB_HOST_EXT"
port="$DB_PORT_EXT"
bashio::log.info "Waiting for EXTERNAL Postgres at ${host}:${port}..." bashio::log.info "Waiting for EXTERNAL Postgres at ${host}:${port}..."
else else
host="$DB_HOST_INTERNAL"; port="$DB_PORT_INTERNAL" host="$DB_HOST_INTERNAL"
port="$DB_PORT_INTERNAL"
bashio::log.info "Waiting for internal Postgres..." bashio::log.info "Waiting for internal Postgres..."
fi fi
until pg_isready -q -h "$host" -p "$port"; do until pg_isready -q -h "$host" -p "$port"; do