mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Fixes #6228. Since OpenSUSE Leap 15, python-virtualenv became a source package, breaking certbot-auto bootstrap on this version. Then python2-virtualenv must be used to create Python 2.x virtual environments. This PR makes certbot-auto compatible to prior and after Leap 15, by testing the existence of python-virtualenv on current OpenSUSE system, and then use appropriate packages. * Cover case of OpenSUSE Leap 15+ in certbot-auto * Revert increment on bootstrap for OpenSUSE * Fix configuration for Leap15+ * Add comment about explicit installation of python2-setuptools * Update letsencrypt-auto-source/pieces/bootstrappers/suse_common.sh Co-Authored-By: adferrand <adferrand@users.noreply.github.com> * Update letsencrypt-auto
36 lines
1 KiB
Bash
Executable file
36 lines
1 KiB
Bash
Executable file
# If new packages are installed by BootstrapSuseCommon below, this version
|
|
# number must be increased.
|
|
BOOTSTRAP_SUSE_COMMON_VERSION=1
|
|
|
|
BootstrapSuseCommon() {
|
|
# SLE12 don't have python-virtualenv
|
|
|
|
if [ "$ASSUME_YES" = 1 ]; then
|
|
zypper_flags="-nq"
|
|
install_flags="-l"
|
|
fi
|
|
|
|
if [ "$QUIET" = 1 ]; then
|
|
QUIET_FLAG='-qq'
|
|
fi
|
|
|
|
if zypper search -x python-virtualenv >/dev/null 2>&1; then
|
|
OPENSUSE_VIRTUALENV_PACKAGES="python-virtualenv"
|
|
else
|
|
# Since Leap 15.0 (and associated Tumbleweed version), python-virtualenv
|
|
# is a source package, and python2-virtualenv must be used instead.
|
|
# Also currently python2-setuptools is not a dependency of python2-virtualenv,
|
|
# while it should be. Installing it explicitly until upstreqm fix.
|
|
OPENSUSE_VIRTUALENV_PACKAGES="python2-virtualenv python2-setuptools"
|
|
fi
|
|
|
|
zypper $QUIET_FLAG $zypper_flags in $install_flags \
|
|
python \
|
|
python-devel \
|
|
$OPENSUSE_VIRTUALENV_PACKAGES \
|
|
gcc \
|
|
augeas-lenses \
|
|
libopenssl-devel \
|
|
libffi-devel \
|
|
ca-certificates
|
|
}
|