Add CentOS 8 support to certbot-auto. (#7406)

Fixes #7396.
This commit is contained in:
Brad Warren
2019-09-30 09:19:05 -07:00
committed by GitHub
parent 6ac8633363
commit c2480b29f7
3 changed files with 5 additions and 0 deletions
+2
View File
@@ -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