DEV: allow multiple configure runs ()

when we have already run an initial setup, fall back to just checking for
socket, rather than outright failing if the init script has already been run.

This allows 'configure' steps to be re-run in standalone cases.

eg: `launcher2 configure app && launcher2 configure app`

current version: fails as it's missing the install_postgres file
with PR: checks for psql socket, and builds.

doing something like `launcher2 start app && launcher2 configure app` would also
print out a more correct error message, "postgres already running stop container"
This commit is contained in:
Jeff Wong 2024-08-12 07:43:26 -07:00 committed by GitHub
parent 618ab51850
commit 9f80d83b32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View file

@ -220,7 +220,12 @@ run:
- exec:
tag: db
cmd: "[ -f /root/install_postgres ] && /root/install_postgres && rm -f /root/install_postgres"
cmd: |
if [ -f /root/install_postgres ]; then
/root/install_postgres && rm -f /root/install_postgres
elif [ -e /shared/postgres_run/.s.PGSQL.5432 ]; then
socat /dev/null UNIX-CONNECT:/shared/postgres_run/.s.PGSQL.5432 || exit 0 && echo postgres already running stop container ; exit 1
fi
- exec:
tag: db

View file

@ -208,7 +208,12 @@ run:
- exec:
tag: db
cmd: "[ -f /root/install_postgres ] && /root/install_postgres && rm -f /root/install_postgres"
cmd: |
if [ -f /root/install_postgres ]; then
/root/install_postgres && rm -f /root/install_postgres
elif [ -e /shared/postgres_run/.s.PGSQL.5432 ]; then
socat /dev/null UNIX-CONNECT:/shared/postgres_run/.s.PGSQL.5432 || exit 0 && echo postgres already running stop container ; exit 1
fi
- exec:
tag: db