We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e168b83 commit 2d0bb05Copy full SHA for 2d0bb05
docker/all-in-one/entrypoint.sh
@@ -179,6 +179,12 @@ function report_health {
179
fi
180
}
181
182
+function run_prelaunch_hooks {
183
+ if [ -f "/etc/postgresql-custom/supautils.conf" ]; then
184
+ sed -i -e 's/dblink, //' "/etc/postgresql-custom/supautils.conf"
185
+ fi
186
+}
187
+
188
function start_supervisor {
189
# Start health reporting
190
report_health &
@@ -293,5 +299,6 @@ if [ "${PLATFORM_DEPLOYMENT:-}" == "true" ]; then
293
299
294
300
295
301
touch "$CONFIGURED_FLAG_PATH"
302
+run_prelaunch_hooks
296
303
start_supervisor
297
304
push_lsn_checkpoint_file
0 commit comments