You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: users cannot set which minor version of postgresql package to use when building dev pkg
In its official deb repository, postgresql packages may have the following
names:
postgresql-17
postgresql-16
postgresql-15
etc. The problem here is that the latest minor version will be installed, wherease
users may want a different version.
Solution: packages have versions. Inside pbuilder_install_script.sh.erb we pick
up which version our user wants and match it agains what's available. If it
exists, we install that particular version:
...
apt -y install postgresql-$PG_MAJOR_VERSION=$pkg_version
...
And then build the local podman image named after the chosen postgresql version.
If user selected postgresql version 17.14 on amd64, the image will be called:
pgpm-debian-pg17.4-amd64
BONUS FIX: LD_CONFIG error messages are no longer present!
0 commit comments