Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(start.sh): fix interpolation issues #61

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,16 @@ export BUCKET="${BUCKET}"
export HOST_BASE="${HOST_BASE}"
export HOST_BUCKET="${HOST_BUCKET}"
export SSL_SECURE="${SSL_SECURE}"
export DUMP_ARGS="${DUMP_ARGS}"
export RESTORE_ARGS="${RESTORE_ARGS}"
export DUMP_ARGS=\"${DUMP_ARGS}\"
export RESTORE_ARGS=\"${RESTORE_ARGS}\"
export POSTGRES_USER="${POSTGRES_USER}"
export POSTGRES_PASS=\"$POSTGRES_PASS\"
export POSTGRES_PORT="${POSTGRES_PORT}"
export POSTGRES_HOST="${POSTGRES_HOST}"
export DUMPPREFIX="${DUMPPREFIX}"
export ARCHIVE_FILENAME="${ARCHIVE_FILENAME}"
export REMOVE_BEFORE="${REMOVE_BEFORE}"
export PG_CONN_PARAMETERS="${PG_CONN_PARAMETERS}"
export PG_CONN_PARAMETERS=\"${PG_CONN_PARAMETERS}\"
export DBLIST="${DBLIST}"
" > /backup-scripts/pgenv.sh
echo "Start script running with these environment options"
Expand Down