mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
parent
6ac8633363
commit
c2480b29f7
3 changed files with 5 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||
### Added
|
||||
|
||||
* Support for Python 3.8 was added to Certbot and all of its components.
|
||||
* Support for CentOS 8 was added to certbot-auto.
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
|||
|
|
@ -775,6 +775,8 @@ elif [ -f /etc/redhat-release ]; then
|
|||
RPM_USE_PYTHON_3=1
|
||||
elif [ "$RPM_DIST_NAME" = "rhel" -a "$RPM_DIST_VERSION" -ge 8 ]; then
|
||||
RPM_USE_PYTHON_3=1
|
||||
elif [ "$RPM_DIST_NAME" = "centos" -a "$RPM_DIST_VERSION" -ge 8 ]; then
|
||||
RPM_USE_PYTHON_3=1
|
||||
else
|
||||
RPM_USE_PYTHON_3=0
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -350,6 +350,8 @@ elif [ -f /etc/redhat-release ]; then
|
|||
RPM_USE_PYTHON_3=1
|
||||
elif [ "$RPM_DIST_NAME" = "rhel" -a "$RPM_DIST_VERSION" -ge 8 ]; then
|
||||
RPM_USE_PYTHON_3=1
|
||||
elif [ "$RPM_DIST_NAME" = "centos" -a "$RPM_DIST_VERSION" -ge 8 ]; then
|
||||
RPM_USE_PYTHON_3=1
|
||||
else
|
||||
RPM_USE_PYTHON_3=0
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue