forked from openshift/os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
c9s: pin selinux-policy-38.1.36-1.el9
The latest selinux-policy breaks ISO tests: openshift#1514 Pin to the previous working version for now. To do this, introduce a new `overrides-c9s.yaml` manifest that we can use going forward when we need to pin to older versions. (cherry picked from commit 455ea2a)
- Loading branch information
1 parent
3d9acd1
commit ea765d6
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# These are the official c9s repos. They are slower to update, but contain older | ||
# versions of packages, which is useful when pinning for lack of a "coreos-pool" | ||
# equivalent. They are unused when no pinning is needed. | ||
|
||
[c9s-baseos-mirror] | ||
name=CentOS Stream 9 - BaseOS | ||
baseurl=http://mirror.stream.centos.org/9-stream/BaseOS/$basearch/os | ||
gpgcheck=1 | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official | ||
|
||
[c9s-appstream-mirror] | ||
name=CentOS Stream 9 - AppStream | ||
baseurl=http://mirror.stream.centos.org/9-stream/AppStream/$basearch/os | ||
gpgcheck=1 | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official | ||
|
||
[c9s-nfv-mirror] | ||
name=CentOS Stream 9 - NFV | ||
baseurl=http://mirror.stream.centos.org/9-stream/NFV/$basearch/os | ||
gpgcheck=1 | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official | ||
|
||
[c9s-rt-mirror] | ||
name=CentOS Stream 9 - RT | ||
baseurl=http://mirror.stream.centos.org/9-stream/RT/$basearch/os | ||
gpgcheck=1 | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This is a poor man's version of an override lockfile for c9s. When needed, we | ||
# can enable the mirror repos here (which hold older RPMs) and list the NEVRs | ||
# we need in the `packages` section. When not needed. Empty or comment out this | ||
# file (except this comment). | ||
|
||
repos: | ||
- c9s-baseos-mirror | ||
- c9s-appstream-mirror | ||
|
||
packages: | ||
# https://github.com/openshift/os/issues/1514 | ||
- selinux-policy-38.1.36-1.el9 |