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.")