From c8b89a9f5adda40c539033d555c174fb5396e9ce Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Tue, 9 Feb 2016 14:50:32 -0800 Subject: [PATCH] Revert "For testing purposes, implement a way to specify which renewal files are run" This reverts commit 56be2e054cacb464df970235e918c55ffd6f5010. --- letsencrypt/cli.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 1465aa789..9ed6cdd8f 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -921,7 +921,7 @@ def _reconstitute(config, full_path): def _renewal_conf_files(config): """Return /path/to/*.conf in the renewal conf directory""" - return glob.glob(os.path.join(config.renewal_configs_dir, config.renewal_glob)) + return glob.glob(os.path.join(config.renewal_configs_dir, "*.conf")) def _renew_describe_results(config, renew_successes, renew_failures, @@ -1496,9 +1496,6 @@ def prepare_and_parse_args(plugins, args, detect_defaults=False): "automation", "--expand", action="store_true", help="If an existing cert covers some subset of the requested names, " "always expand and replace it with the additional names.") - helpful.add( - "automation", "--renewal-glob", default=flag_default("renewal_glob"), - help="A pattern for which renewal files in /etc/letsencrypt/renewal/ to process") helpful.add( "automation", "--version", action="version", version="%(prog)s {0}".format(letsencrypt.__version__),