From 03f4cc3a996f905739b321e58f94e06657d2ac1f Mon Sep 17 00:00:00 2001 From: Roy Lenferink Date: Sun, 14 Jul 2024 11:08:50 +0200 Subject: [PATCH] Initialize 'certbot_create_extra_args' variable This was introduced in 5a23e85f1cebfbc3999d896f25b99a8c2776f808 but no default was added, resulting in a 'undefined variable' error --- defaults/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defaults/main.yml b/defaults/main.yml index dc1034e..903524d 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -27,6 +27,8 @@ certbot_certs: [] # - domains: # - example3.com +certbot_create_extra_args: "" + certbot_create_command: >- {{ certbot_script }} certonly --{{ certbot_create_method }} {{ '--hsts' if certbot_hsts else '' }}