1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-07-04 18:48:39 +02:00

fix: Healtcheck use netstat for port as fallback

This commit is contained in:
Jonas Zohren 2022-01-28 23:23:58 +01:00
parent 8c1cf733b5
commit 401b88d16d
No known key found for this signature in database
GPG key ID: FE3ED5D90A175463

View file

@ -1,13 +1,9 @@
#!/bin/sh
# If the port is not specified as env var, take it from the config file
# If the config file does not contain a default port and the CONDUIT_PORT env is not set, create
# try to get port from process list
if [ -z "${CONDUIT_PORT}" ]; then
CONDUIT_PORT=$(grep -m1 -o 'port\s=\s[0-9]*' conduit.toml | grep -m1 -o '[0-9]*')
fi
# If the config file also does not contain a default port, just use the default one: 6167.
if [ -z "${CONDUIT_PORT}" ]; then
CONDUIT_PORT=6167
CONDUIT_PORT=$(netstat -tlp | grep conduit | grep -m1 -o ':[0-9]*' | grep -m1 -o '[0-9]*')
fi
# The actual health check.