File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
99
1010# Full version strings for each major version
1111postgres_release :
12- postgresorioledb-17 : " 17.0.1.55 -orioledb"
13- postgres17 : " 17.4.1.005 "
14- postgres15 : " 15.8.1.062 "
12+ postgresorioledb-17 : " 17.0.1.56 -orioledb"
13+ postgres17 : " 17.4.1.006 "
14+ postgres15 : " 15.8.1.063 "
1515
1616# Non Postgres Extensions
1717pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change 104104 --extra-vars " psql_version=psql_${POSTGRES_MAJOR_VERSION} "
105105}
106106
107+ function clean_legacy_things {
108+ # removes things that are bundled for legacy reasons, but we can start without for our newer artifacts
109+ apt-get unmark zlib1g* # TODO (darora): need to make sure that there aren't other things that still need this
110+ apt-get -y purge kong
111+ apt-get autoremove -y
112+ }
113+
107114function clean_system {
108115 # Copy cleanup scripts
109116 chmod +x /tmp/ansible-playbook/scripts/90-cleanup-qemu.sh
@@ -146,5 +153,6 @@ execute_stage2_playbook
146153# we do not want to ship an initialized DB as this is performed as needed
147154mkdir -p /db/template
148155mv /data/pgdata /db/template
156+ clean_legacy_things
149157clean_system
150158cloud-init clean --logs
You can’t perform that action at this time.
0 commit comments