Skip to content

Commit

Permalink
Tweak post upgrade completion messages
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Oct 2, 2024
1 parent 012cf27 commit b138ebc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pgautoupgrade-postupgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ echo "-------------------------------"

# If "one shot" mode was requested, then shut down PostgreSQL
if [ "x${PGAUTO_ONESHOT}" = "xyes" ]; then
echo "*******************************************************************************************************"
echo "'One shot' automatic upgrade was requested, so exiting now that the post upgrade scripting has finished"
echo "*******************************************************************************************************"
echo "****************************************************************************************************"
echo "'One shot' automatic upgrade was requested, so exiting now that the post upgrade tasks have finished"
echo "****************************************************************************************************"
pg_ctl stop -D "${PGDATA}"
else
echo "**************************************************************************************************"
echo "Post upgrade tasks have completed successfully. PostgreSQL should now be fully updated and usable"
echo "**************************************************************************************************"
echo "*************************************************************************************************"
echo "Post upgrade tasks have finished successfully. PostgreSQL should now be fully updated and usable"
echo "*************************************************************************************************"
fi

0 comments on commit b138ebc

Please sign in to comment.