Skip to content

Commit

Permalink
postgresql: avoid support enddate for sp7
Browse files Browse the repository at this point in the history
Avoid giving out a far-too-future end date for postgresql 17. We likely
will do another upgrade here.
  • Loading branch information
dirkmueller committed Dec 3, 2024
1 parent 64d7039 commit dc7e49b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bci_build/package/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
pretty_name=f"PostgreSQL {ver}",
support_level=SupportLevel.ACC,
supported_until=(
_SUPPORTED_UNTIL_SLE[os_version] if os_version.is_sle15 else None
_SUPPORTED_UNTIL_SLE[os_version]
if os_version in (OsVersion.SP5, OsVersion.SP6)
else None
),
from_target_image=generate_from_image_tag(os_version, "bci-micro"),
package_list=[
Expand Down

0 comments on commit dc7e49b

Please sign in to comment.