mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
Extended IValidator, renamed arguments
This commit is contained in:
parent
cdf59a8b7f
commit
93be5486a8
1 changed files with 7 additions and 4 deletions
|
|
@ -147,14 +147,17 @@ class IDisplay(zope.interface.Interface):
|
|||
class IValidator(zope.interface.Interface):
|
||||
"""Configuration validator."""
|
||||
|
||||
def redirect(name):
|
||||
def redirect(hostname):
|
||||
pass
|
||||
|
||||
def ocsp_stapling(name):
|
||||
def ocsp_stapling(hostname):
|
||||
pass
|
||||
|
||||
def https(name):
|
||||
def https(hostname):
|
||||
pass
|
||||
|
||||
def hsts(name):
|
||||
def hsts(hostname):
|
||||
pass
|
||||
|
||||
def spdy(hostname):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue