mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Use ACMEv2 endpoint if requested
This commit is contained in:
parent
ddc51134eb
commit
ca5ea5f029
1 changed files with 5 additions and 0 deletions
|
|
@ -16,6 +16,11 @@ certbot_test () {
|
|||
"$@"
|
||||
}
|
||||
|
||||
# Use local ACMEv2 endpoint if requested and SERVER isn't already set.
|
||||
if [ "$BOULDER_INTEGRATION" = "v2" -a -z "$SERVER" ]; then
|
||||
SERVER="http://localhost:4001/directory"
|
||||
fi
|
||||
|
||||
certbot_test_no_force_renew () {
|
||||
omit_patterns="*/*.egg-info/*,*/dns_common*,*/setup.py,*/test_*,*/tests/*"
|
||||
omit_patterns="$omit_patterns,*_test.py,*_test_*,"
|
||||
|
|
|
|||
Loading…
Reference in a new issue