We set the letsencrypt_self_generate_tokens value to True in testing which means the variable is valid and exists in testing. However, in production this variable isn't set and doesn't ahve a default so we get: The task includes an option with an undefined variable. The error was: 'letsencrypt_self_generate_tokens' is undefined Fix this by setting the default value for this var to False. Also, add it to the README of letsencrypt-request-certs as this is where it is primarily used. Change-Id: I862df6ea3ff7f3a1df2a088b04d230bb618aaa85changes/20/812720/3
parent
50c5727d42
commit
4346570a0b
@ -1,2 +1,3 @@
|
||||
letsencrypt_use_staging: False
|
||||
letsencrypt_self_sign_only: False
|
||||
letsencrypt_self_generate_tokens: False
|
||||
|
@ -1 +1,2 @@
|
||||
letsencrypt_use_staging: False
|
||||
letsencrypt_use_staging: False
|
||||
letsencrypt_self_generate_tokens: False
|
||||
|
Loading…
Reference in new issue