From cf76593fa70f4fb5743946feab5df939a23ef153 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Mon, 22 Jun 2015 18:03:04 +0000 Subject: [PATCH] Remove constants.NETSTAT. Update docs for IConfig.server. --- letsencrypt/constants.py | 4 ---- letsencrypt/interfaces.py | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/letsencrypt/constants.py b/letsencrypt/constants.py index 47539615d..356b8ed14 100644 --- a/letsencrypt/constants.py +++ b/letsencrypt/constants.py @@ -81,7 +81,3 @@ ACCOUNT_KEYS_DIR = "keys" REC_TOKEN_DIR = "recovery_tokens" """Directory where all recovery tokens are saved (relative to IConfig.work_dir).""" - -NETSTAT = "/bin/netstat" -"""Location of netstat binary for checking whether a listener is already -running on the specified port (Linux-specific).""" diff --git a/letsencrypt/interfaces.py b/letsencrypt/interfaces.py index c0d44a134..d2a420d00 100644 --- a/letsencrypt/interfaces.py +++ b/letsencrypt/interfaces.py @@ -148,8 +148,7 @@ class IConfig(zope.interface.Interface): """ server = zope.interface.Attribute( - "CA hostname (and optionally :port). The server certificate must " - "be trusted in order to avoid further modifications to the client.") + "ACME new registration URI (including /acme/new-reg).") email = zope.interface.Attribute( "Email used for registration and recovery contact.") rsa_key_size = zope.interface.Attribute("Size of the RSA key.")