Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh')
-rw-r--r--letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh b/letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh
index b011a7235..ac0553db5 100644
--- a/letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh
+++ b/letsencrypt-auto-source/pieces/bootstrappers/rpm_python3.sh
@@ -4,15 +4,15 @@ BOOTSTRAP_RPM_PYTHON3_VERSION=1
BootstrapRpmPython3() {
# Tested with:
- # - CentOS 6
+ # - Fedora 29
InitializeRPMCommonBase
- # EPEL uses python34
- if $TOOL list python34 >/dev/null 2>&1; then
- python_pkgs="python34
- python34-devel
- python34-tools
+ # Fedora 29 must use python3-virtualenv
+ if $TOOL list python3-virtualenv >/dev/null 2>&1; then
+ python_pkgs="python3
+ python3-virtualenv
+ python3-devel
"
else
error "No supported Python package available to install. Aborting bootstrap!"