-
-
Notifications
You must be signed in to change notification settings - Fork 18
Include forked certifi package that handles both Debian and Fedora #44
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
Conversation
Both Fedora and Debian have patched certifi package to use system CA bundle instead of one managed by certifi internally. Those CA bundle paths are different between distributions. When Fedora mgmt dispvm is used to manage Debian, the CA bundle path doesn't match, resulting in a crash when importing 'requests' module (which itself uses 'certifi' to load CA bundle). Include modified 'certifi' package that has paths for both Debian and Fedora, and make salt-ssh use it via PYTHONPATH variable. Fixes QubesOS/qubes-issues#10262
OpenQA test summaryComplete test suite and dependencies: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2025100312-4.3&flavor=pull-requests Test run included the following:
New failures, excluding unstableCompared to: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2025081011-4.3&flavor=update
Failed tests8 failures
Fixed failuresCompared to: https://openqa.qubes-os.org/tests/149225#dependencies 83 fixed
Unstable testsPerformance TestsPerformance degradation:15 performance degradations
Remaining performance tests:165 tests
|
|
What about installing a stub |
This is simply false. There is a bunch of salt module that can make HTTP requests (file.managed being the simplest example). |
Oh, good catch. |
Both Fedora and Debian have patched certifi package to use system CA
bundle instead of one managed by certifi internally. Those CA bundle
paths are different between distributions.
When Fedora mgmt dispvm is used to manage Debian, the CA bundle path
doesn't match, resulting in a crash when importing 'requests' module
(which itself uses 'certifi' to load CA bundle).
Include modified 'certifi' package that has paths for both Debian and
Fedora, and make salt-ssh use it via PYTHONPATH variable.
Fixes QubesOS/qubes-issues#10262