From 696096917abb130e2b311307ff1171e1c35bcba3 Mon Sep 17 00:00:00 2001 From: Igor Diakonov Date: Tue, 22 Oct 2019 10:30:08 +0300 Subject: [PATCH] Added DB recreation --- postgres-restore-s3/restore.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgres-restore-s3/restore.sh b/postgres-restore-s3/restore.sh index a569d2c..9770912 100644 --- a/postgres-restore-s3/restore.sh +++ b/postgres-restore-s3/restore.sh @@ -73,7 +73,8 @@ fi echo "Restoring ${LATEST_BACKUP}" -pg_restore $POSTGRES_HOST_OPTS -C -c --if-exists --no-owner -j $RESTORE_JOBS -v -d $POSTGRES_DATABASE dump.sql +psql $POSTGRES_HOST_OPTS -d postgres -c "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = '$POSTGRES_DATABASE' AND pid <> pg_backend_pid(); DROP DATABASE IF EXISTS $POSTGRES_DATABASE; CREATE DATABASE $POSTGRES_DATABASE; GRANT ALL PRIVILIGIES ON '$POSTGRES_DATABASE' TO '$POSTGRES_USER';" +pg_restore $POSTGRES_HOST_OPTS --no-owner -j $RESTORE_JOBS -v -d $POSTGRES_DATABASE dump.sql echo "Restore complete"