mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Allow non-interactive with test-mode
This commit is contained in:
parent
8eb889d942
commit
77616a975b
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ s.serve_forever()" """
|
|||
help="Automatically allows public IP logging.")
|
||||
|
||||
def prepare(self): # pylint: disable=missing-docstring,no-self-use
|
||||
if self.config.noninteractive_mode:
|
||||
if self.config.noninteractive_mode and not self.conf("test-mode"):
|
||||
raise errors.PluginError("Running manual mode non-interactively is not supported")
|
||||
|
||||
def more_info(self): # pylint: disable=missing-docstring,no-self-use
|
||||
|
|
|
|||
Loading…
Reference in a new issue