mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 00:22:28 +02:00
Fix Certbot's Apache plugin doesn't work on Scientific Linux (#7294)
This PR adds OVERRIDE_CLASS in certbot-apache/entrypoint.py for Scientific Linux. Fixes #7248. * add OVERRIDE_CLASS for Scientific Linux os name * add entry for Scientific Linux using "scientific" as key * Update changelog
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
*
|
* Fixed OS detection in the Apache plugin on Scientific Linux.
|
||||||
|
|
||||||
More details about these changes can be found on our GitHub repo.
|
More details about these changes can be found on our GitHub repo.
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ OVERRIDE_CLASSES = {
|
|||||||
"gentoo base system": override_gentoo.GentooConfigurator,
|
"gentoo base system": override_gentoo.GentooConfigurator,
|
||||||
"opensuse": override_suse.OpenSUSEConfigurator,
|
"opensuse": override_suse.OpenSUSEConfigurator,
|
||||||
"suse": override_suse.OpenSUSEConfigurator,
|
"suse": override_suse.OpenSUSEConfigurator,
|
||||||
|
"scientific": override_centos.CentOSConfigurator,
|
||||||
|
"scientific linux": override_centos.CentOSConfigurator,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user