Files
wlan-cloud-userportal/wait-for-postgres.sh
Dmitry Dunaev 4122cf1f4c [WIFI-7221] Add: CI/CD related files
Signed-off-by: Dmitry Dunaev <dmitry@opsfleet.com>
2022-03-09 10:15:56 +03:00

27 lines
659 B
Bash
Executable File

#!/bin/sh
# wait-for-postgres.sh
set -e
host="$1"
shift
export PGUSER=$(grep 'storage.type.postgresql.username' $OWSUB_CONFIG/owsub.properties | awk -F '= ' '{print $2}')
export PGPASSWORD=$(grep 'storage.type.postgresql.password' $OWSUB_CONFIG/owsub.properties | awk -F '= ' '{print $2}')
until psql -h "$host" -c '\q'; do
>&2 echo "Postgres is unavailable - sleeping"
sleep 1
done
>&2 echo "Postgres is up - executing command"
if [ "$1" = '/openwifi/owsub' -a "$(id -u)" = '0' ]; then
if [ "$RUN_CHOWN" = 'true' ]; then
chown -R "$OWSUB_USER": "$OWSUB_ROOT" "$OWSUB_CONFIG"
fi
exec su-exec "$OWSUB_USER" "$@"
fi
exec "$@"