From 0bc3e1860bec562456cdad727d58b30b9b02937a Mon Sep 17 00:00:00 2001 From: Gilles Pietri Date: Tue, 8 Nov 2016 00:31:50 +0100 Subject: [PATCH] Add renew_hook to options stored in the renewal config, partially tackles #3394 (#3724) --- certbot/renewal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/renewal.py b/certbot/renewal.py index 5e57c3e20..f5b2efa46 100644 --- a/certbot/renewal.py +++ b/certbot/renewal.py @@ -31,7 +31,7 @@ logger = logging.getLogger(__name__) # the renewal configuration process loses this information. STR_CONFIG_ITEMS = ["config_dir", "logs_dir", "work_dir", "user_agent", "server", "account", "authenticator", "installer", - "standalone_supported_challenges"] + "standalone_supported_challenges", "renew_hook"] INT_CONFIG_ITEMS = ["rsa_key_size", "tls_sni_01_port", "http01_port"]