-
Notifications
You must be signed in to change notification settings - Fork 363
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
Disable centos production repo, keep only development enabled. #6229
base: rhel-10
Are you sure you want to change the base?
Disable centos production repo, keep only development enabled. #6229
Conversation
I think the proper solution should be to disable the production CentOS Stream repositories and using only the development one. Is there something blocking to do this? |
Agreed, I'll try to. |
ec98322
to
afa221e
Compare
Just removing the repo file won't help because it would get pulled back in on 'dnf update -i'. The issue this patch is trying to resolve is older version of package in developemnt CentOS repository than in the production CentOS repository. For example for gtk package: Error: Problem 1: package gtk3-devel-docs-3.24.43-2.el10.x86_64 from crb-development requires gtk3 = 3.24.43-2.el10, but none of the providers can be installed - cannot install both gtk3-3.24.43-3.el10.x86_64 from appstream and gtk3-3.24.43-2.el10.x86_64 from appstream-development - cannot install both gtk3-3.24.43-3.el10.x86_64 from appstream and gtk3-3.24.43-2.el10.x86_64 from appstream - package gtk3-devel-3.24.43-3.el10.x86_64 from appstream requires gtk3(x86-64) = 3.24.43-3.el10, but none of the providers can be installed - cannot install the best candidate for the job - conflicting requests
afa221e
to
b6c6b5f
Compare
/kickstar-test --testtype smoke |
/kickstart-test --testtype smoke |
@jkonecny12 I updated the PR to disable the production repo. |
(Need to fix a typo in the commit message.) |
Something feels fishy here. As I understand it the package lifecycle goes: so there shouldn't be a way of getting older packages from |
The issue this patch is trying to resolve is older version of package in developemnt CentOS repository than in the production CentOS repository. For example for gtk package:
If it the solution is acceptable, I'll update also anaconda-ci Dockerfile in the same manner?