Skip to content

Commit

Permalink
Merge pull request #1735 from jlebon/pr/composefs-reenable
Browse files Browse the repository at this point in the history
NO-JIRA: common.yaml: re-enable composefs on el9
  • Loading branch information
openshift-merge-bot[bot] authored Feb 14, 2025
2 parents e1a1926 + 870c2ef commit b3e1fa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
18 changes: 3 additions & 15 deletions kola-denylist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,12 @@
- c9s
- rhel-9.6

# Remove this when we stop using rhel-9.4
- pattern: ext.config.shared.boot.bootupd-validate
tracker: https://github.com/openshift/os/issues/1687
osversion:
- rhel-9.4

# There are issues currently on ppc64le and kernel-64k in el9 that break
# with composefs.
- pattern: ext.config.shared.composefs.enabled
tracker: https://issues.redhat.com/browse/RHEL-70199
osversion:
- c9s
- rhel-9.6
- rhel-9.4

- pattern: ostree.sync
tracker: https://github.com/openshift/os/issues/1720
snooze: 2025-02-11
warn: true
arches:
- s390x

- pattern: ostree.sync
tracker: https://github.com/openshift/os/issues/1744
2 changes: 1 addition & 1 deletion manifest-el9-shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ postprocess:
# https://issues.redhat.com/browse/RHEL-63985
if [ -f /usr/lib/ostree/prepare-root.conf ]; then
grep -q 'enabled = true' /usr/lib/ostree/prepare-root.conf
sed -i -e 's,enabled = true,enabled = no,' /usr/lib/ostree/prepare-root.conf
sed -i -e 's,enabled = true,enabled = maybe,' /usr/lib/ostree/prepare-root.conf
fi
2 changes: 1 addition & 1 deletion packages-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ postprocess:
# kernel overrides today for e.g. kernel-rt.
for x in $(find /etc/yum.repos.d/ -name '*.repo'); do
# ignore repo files that are mountpoints since they're likely secrets
if ! findmnt "$x" &>/dev/null; then
if ! mountpoint "$x"; then
sed -i -e s,enabled=1,enabled=0, $x
fi
done
Expand Down

0 comments on commit b3e1fa1

Please sign in to comment.