mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
set authenticator manually each call to override --standalone
This commit is contained in:
parent
39cff40554
commit
e85d3b6a83
1 changed files with 3 additions and 2 deletions
|
|
@ -491,10 +491,11 @@ def test_reuse_key_allow_subset_of_names(context: IntegrationTestsContext) -> No
|
|||
context.certbot([
|
||||
'reconfigure',
|
||||
'--cert-name', certname,
|
||||
'--manual-auth-hook', context.manual_dns_auth_hook
|
||||
'--manual-auth-hook', context.manual_dns_auth_hook,
|
||||
'-a', 'manual' # needed to override --standalone passed automatically
|
||||
])
|
||||
|
||||
context.certbot(['renew', '--cert-name', certname, '--force-renewal'])
|
||||
context.certbot(['renew', '--cert-name', certname, '--force-renewal', '-a', 'manual'])
|
||||
stdout, _ = context.certbot(['certificates'])
|
||||
assert context.get_domain('fail-dns1') not in stdout
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue