Switch to Boulder IP address.

This commit is contained in:
Jacob Hoffman-Andrews 2018-05-08 14:37:06 -07:00
parent 3eaf35f1e2
commit 1be906c57f
4 changed files with 5 additions and 5 deletions

View file

@ -127,7 +127,7 @@ Boulder:
.. code-block:: shell
export SERVER=http://localhost:4000/directory
export SERVER=http://10.77.77.77:4000/directory
source tests/integration/_common.sh
Run the integration tests using:

View file

@ -26,7 +26,7 @@ fi
docker-compose up -d
set +x # reduce verbosity while waiting for boulder
until curl http://localhost:4000/directory 2>/dev/null; do
until curl http://10.77.77.77:4000/directory 2>/dev/null; do
echo waiting for boulder
sleep 1
done

View file

@ -18,7 +18,7 @@ certbot_test () {
# Use local ACMEv2 endpoint if requested and SERVER isn't already set.
if [ "${BOULDER_INTEGRATION:-v1}" = "v2" -a -z "${SERVER:+x}" ]; then
SERVER="http://localhost:4001/directory"
SERVER="http://10.77.77.77:4001/directory"
fi
certbot_test_no_force_renew () {
@ -30,7 +30,7 @@ certbot_test_no_force_renew () {
--source $sources \
--omit $omit_patterns \
$(command -v certbot) \
--server "${SERVER:-http://localhost:4000/directory}" \
--server "${SERVER:-http://boulder:4000/directory}" \
--no-verify-ssl \
--tls-sni-01-port $tls_sni_01_port \
--http-01-port $http_01_port \

View file

@ -24,7 +24,7 @@ from acme import client as acme_client
from acme import errors as acme_errors
from acme import messages
DIRECTORY = os.getenv('DIRECTORY', 'http://localhost:4000/directory')
DIRECTORY = os.getenv('DIRECTORY', 'http://10.77.77.77:4000/directory')
if len(sys.argv) != 2:
print("Usage: python deactivate.py private_key.pem")