mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
add comments
This commit is contained in:
parent
0aa482d896
commit
80e793c8d4
3 changed files with 9 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ if [ $? -ne 0 ] ; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# This script sets the environment variables PYTHON_NAME, VENV_PATH, and
|
||||
# VENV_SCRIPT based on the version of Python available on the system. For
|
||||
# instance, Fedora uses Python 3 and Python 2 is not installed.
|
||||
. tests/letstest/scripts/set_python_envvars.sh
|
||||
|
||||
"$VENV_SCRIPT" -e acme[dev] -e .[dev,docs] -e certbot-apache
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@ if ! ./letsencrypt-auto -v --debug --version --no-self-upgrade 2>&1 | tail -n1 |
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# This script sets the environment variables PYTHON_NAME, VENV_PATH, and
|
||||
# VENV_SCRIPT based on the version of Python available on the system. For
|
||||
# instance, Fedora uses Python 3 and Python 2 is not installed.
|
||||
. tests/letstest/scripts/set_python_envvars.sh
|
||||
|
||||
# Now that python and openssl have been installed, we can set up a fake server
|
||||
|
|
|
|||
|
|
@ -18,6 +18,9 @@ export PATH="$LE_AUTO_DIR:$PATH"
|
|||
|
||||
letsencrypt-auto --os-packages-only --debug --version
|
||||
|
||||
# This script sets the environment variables PYTHON_NAME, VENV_PATH, and
|
||||
# VENV_SCRIPT based on the version of Python available on the system. For
|
||||
# instance, Fedora uses Python 3 and Python 2 is not installed.
|
||||
. tests/letstest/scripts/set_python_envvars.sh
|
||||
|
||||
# Create a venv-like layout at the old virtual environment path to test that a
|
||||
|
|
|
|||
Loading…
Reference in a new issue