From da8f3e19a4be73a0adde280a277ec594e27922e9 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Thu, 28 May 2015 07:58:40 +0000 Subject: [PATCH] Remove confusingly unused --enroll-autorenew. --- letsencrypt/cli.py | 3 --- letsencrypt/interfaces.py | 4 ---- 2 files changed, 7 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index a848e9c54..a32a1feaf 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -339,9 +339,6 @@ def _paths_parser(parser): add("--chain-path", default=flag_default("chain_path"), help=config_help("chain_path")) - add("--enroll-autorenew", default=None, action="store_true", - help=config_help("enroll_autorenew")) - return parser diff --git a/letsencrypt/interfaces.py b/letsencrypt/interfaces.py index e154bd5d3..fd4b3d25b 100644 --- a/letsencrypt/interfaces.py +++ b/letsencrypt/interfaces.py @@ -176,10 +176,6 @@ class IConfig(zope.interface.Interface): le_vhost_ext = zope.interface.Attribute( "SSL vhost configuration extension.") - enroll_autorenew = zope.interface.Attribute( - "Register this certificate in the database to be renewed" - " automatically.") - cert_path = zope.interface.Attribute("Let's Encrypt certificate file path.") chain_path = zope.interface.Attribute("Let's Encrypt chain file path.")