Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sle16 beta eula #1659

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/bci_build/package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,9 @@ def has_container_suseconnect(self) -> bool:
def eula_package_names(self) -> tuple[str, ...]:
if self.is_sle15:
return ("skelcd-EULA-bci",)
# if self.is_slcc:
# return (f"skelcd-EULA-{str(self.value).lower()}",)
# TODO: switch to skelcd-EULA-bci when SLES 16 is released
dirkmueller marked this conversation as resolved.
Show resolved Hide resolved
if self.value == OsVersion.SLE16_0.value:
return ("skelcd-EULA-SLES",)
return ()

@property
Expand Down
Loading