1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

Fix various bugs

This commit is contained in:
Peter Eckersley
2015-12-22 18:57:37 -08:00
parent 237472c361
commit 91f53dc8db
2 changed files with 4 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ parser.add_argument('--saveinstances',
action='store_true',
help="don't kill EC2 instances after run, useful for debugging")
parser.add_argument('--alt_pip',
default='https://certainly.isnot.org/pip/',
default='',
help="server from which to pull candidate release packages")
cl_args = parser.parse_args()

View File

@@ -49,7 +49,8 @@ else
exit 1
fi
venv/bin/letsencrypt -v --debug --text --agree-dev-preview --agree-tos \
bootstrap/dev/venv.sh
sudo venv/bin/letsencrypt -v --debug --text --agree-dev-preview --agree-tos \
--renew-by-default --redirect --register-unsafely-without-email \
--domain $PUBLIC_HOSTNAME --server $BOULDER_URL
if [ $? -ne 0 ] ; then
@@ -58,7 +59,7 @@ fi
if [ "$OS_TYPE" = "ubuntu" ] ; then
export LETSENCRYPT="$HOME/.local/share/letsencrypt/bin/letsencrypt"
venv/bin/tox apacheconftest
venv/bin/tox -e apacheconftest
else
echo Not running hackish apache tests on $OS_TYPE
fi