DEV: allow multiple configure runs (#828)
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:
parent
618ab51850
commit
9f80d83b32
2 changed files with 12 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue