In pg_upgrade testing script, turn off command echo at the end so status

report is clearer.
This commit is contained in:
Bruce Momjian 2012-12-04 08:17:45 -05:00
parent ec8d1e32dd
commit c47d261c07

View File

@ -127,6 +127,11 @@ esac
pg_dumpall -f "$temp_root"/dump2.sql || pg_dumpall2_status=$?
pg_ctl -m fast stop
# no need to echo commands anymore
set +x
echo
if [ -n "$pg_dumpall2_status" ]; then
echo "pg_dumpall of post-upgrade database cluster failed"
exit 1