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:
9
9
10
10
# Full version strings for each major version
11
11
postgres_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 "
15
15
16
16
# Non Postgres Extensions
17
17
pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change 104
104
--extra-vars " psql_version=psql_${POSTGRES_MAJOR_VERSION} "
105
105
}
106
106
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
+
107
114
function clean_system {
108
115
# Copy cleanup scripts
109
116
chmod +x /tmp/ansible-playbook/scripts/90-cleanup-qemu.sh
@@ -146,5 +153,6 @@ execute_stage2_playbook
146
153
# we do not want to ship an initialized DB as this is performed as needed
147
154
mkdir -p /db/template
148
155
mv /data/pgdata /db/template
156
+ clean_legacy_things
149
157
clean_system
150
158
cloud-init clean --logs
You can’t perform that action at this time.
0 commit comments