diff --git a/10/root/usr/share/container-scripts/postgresql/common.sh b/10/root/usr/share/container-scripts/postgresql/common.sh index ec5ed235..29e91dd8 100644 --- a/10/root/usr/share/container-scripts/postgresql/common.sh +++ b/10/root/usr/share/container-scripts/postgresql/common.sh @@ -260,6 +260,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata () diff --git a/12/root/usr/share/container-scripts/postgresql/common.sh b/12/root/usr/share/container-scripts/postgresql/common.sh index 34483b6e..e917c39d 100644 --- a/12/root/usr/share/container-scripts/postgresql/common.sh +++ b/12/root/usr/share/container-scripts/postgresql/common.sh @@ -260,6 +260,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata () diff --git a/13/root/usr/share/container-scripts/postgresql/common.sh b/13/root/usr/share/container-scripts/postgresql/common.sh index c75d823f..5b166305 100644 --- a/13/root/usr/share/container-scripts/postgresql/common.sh +++ b/13/root/usr/share/container-scripts/postgresql/common.sh @@ -260,6 +260,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata () diff --git a/14/root/usr/share/container-scripts/postgresql/common.sh b/14/root/usr/share/container-scripts/postgresql/common.sh index e3c4d28f..53ed955f 100644 --- a/14/root/usr/share/container-scripts/postgresql/common.sh +++ b/14/root/usr/share/container-scripts/postgresql/common.sh @@ -260,6 +260,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata () diff --git a/15/root/usr/share/container-scripts/postgresql/common.sh b/15/root/usr/share/container-scripts/postgresql/common.sh index e2ff4c4f..0428cd0e 100644 --- a/15/root/usr/share/container-scripts/postgresql/common.sh +++ b/15/root/usr/share/container-scripts/postgresql/common.sh @@ -260,6 +260,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata () diff --git a/src/root/usr/share/container-scripts/postgresql/common.sh b/src/root/usr/share/container-scripts/postgresql/common.sh index 3ba756ed..f725ba21 100644 --- a/src/root/usr/share/container-scripts/postgresql/common.sh +++ b/src/root/usr/share/container-scripts/postgresql/common.sh @@ -261,6 +261,7 @@ migrate_db () pg_dumpall -h "$POSTGRESQL_MIGRATION_REMOTE_HOST" \ | grep -v '^CREATE ROLE postgres;' ) | psql + set +o pipefail } function set_pgdata ()