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

Workaround package_nfs-utils_removed issue on bootable containers #12871

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# platform = Red Hat Enterprise Linux 10
# reboot = false
# strategy = disable
# complexity = low
# disruption = low

# This RHEL 10 special remediation is a workaround for
# https://issues.redhat.com/browse/RHEL-74244
# and once the issue is resolved we will remove it.
if {{{ bash_bootc_build() }}}; then
mkdir -p /var/lib/rpm-state
fi

dnf -y remove nfs-utils
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ template:
name: package_removed
vars:
pkgname: nfs-utils
backends:
bootc: "off"
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# platform = Red Hat Enterprise Linux 10
# reboot = false
# strategy = disable
# complexity = low
# disruption = low

# This RHEL 10 special remediation is a workaround for
# https://issues.redhat.com/browse/RHEL-74244
# and once the issue is resolved we will remove it.
if {{{ bash_bootc_build() }}}; then
mkdir -p /var/lib/rpm-state
fi

dnf -y remove gssproxy
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ template:
pkgname: gssproxy
backends:
anaconda: "off"
bootc: "off"
Loading