mirror of
https://github.com/certbot/certbot.git
synced 2026-07-15 20:53:00 -04:00
Merge pull request #1073 from letsencrypt/1072
Fix pip / nginx heisenbug
This commit is contained in:
commit
df7f208d24
1 changed files with 10 additions and 2 deletions
|
|
@ -69,8 +69,12 @@ if [ "$VERBOSE" = 1 ] ; then
|
|||
echo
|
||||
$VENV_BIN/pip install -U setuptools
|
||||
$VENV_BIN/pip install -U pip
|
||||
# nginx is buggy / disabled for now...
|
||||
$VENV_BIN/pip install -U letsencrypt letsencrypt-apache #letsencrypt-nginx
|
||||
$VENV_BIN/pip install -U letsencrypt letsencrypt-apache
|
||||
# nginx is buggy / disabled for now, but upgrade it if the user has
|
||||
# installed it manually
|
||||
if $VENV_BIN/pip freeze | grep -q letsencrypt-nginx ; then
|
||||
$VENV_BIN/pip install -U letsencrypt letsencrypt-nginx
|
||||
fi
|
||||
else
|
||||
$VENV_BIN/pip install -U setuptools > /dev/null
|
||||
echo -n .
|
||||
|
|
@ -80,6 +84,10 @@ else
|
|||
$VENV_BIN/pip install -U letsencrypt > /dev/null
|
||||
echo -n .
|
||||
$VENV_BIN/pip install -U letsencrypt-apache > /dev/null
|
||||
if $VENV_BIN/pip freeze | grep -q letsencrypt-nginx ; then
|
||||
echo -n .
|
||||
$VENV_BIN/pip install -U letsencrypt-nginx > /dev/null
|
||||
fi
|
||||
echo
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue