Skip to content

Commit

Permalink
Merge pull request #1658 from SUSE/coreutils
Browse files Browse the repository at this point in the history
Install sles-release with coreutils
  • Loading branch information
dcermak authored Sep 16, 2024
2 parents e0795ab + 19ebbe1 commit 103d122
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/bci_build/package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,6 @@ def release_package_names(self) -> tuple[str, ...]:
return ("SLES-release",)
if self.is_ltss:
return ("sles-ltss-release",)
# if self.is_slcc:
# return (f"{str(self.value).lower()}-release",)

assert self.is_sle15
return ("sles-release",)
Expand Down
2 changes: 1 addition & 1 deletion src/bci_build/package/basecontainers.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def _get_supported_until_fips(os_version: OsVersion) -> datetime.date:
supported_until=_get_supported_until_fips(os_version),
is_latest=os_version in CAN_BE_LATEST_OS_VERSION,
pretty_name=_get_fips_pretty_name(os_version),
package_list=[*os_version.release_package_names]
package_list=[*os_version.release_package_names, "coreutils"]
+ (
["fipscheck"]
if os_version == OsVersion.SP3
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
{% endfor %}
# Workaround for https://github.com/openSUSE/obs-build/issues/487
RUN zypper --non-interactive install --no-recommends sles-release
RUN zypper --non-interactive install --no-recommends coreutils sles-release
# Importing MS GPG keys
COPY microsoft.asc /tmp
Expand Down

0 comments on commit 103d122

Please sign in to comment.