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:
tyborr
2019-08-12 12:59:29 -07:00
committed by Brad Warren
parent 55cf49cebe
commit a1aef4c15c
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -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,
} }