Commit f3f08f42 authored by Mattia Rizzolo's avatar Mattia Rizzolo

ssl-keys: explicitly check for variable being defined and non-empty

new ansible is bitching about
    {% if webmaster@ubuntu-it.org %} True {% else %} False {% endif %}
being non valid or something.
Giving it a full real explicit check seems to do the trick.
Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mapreri@ubuntu.com>
parent b8471719
......@@ -9,4 +9,4 @@
when: not letsencrypt_email
- include_tasks: letsencrypt.yml
when: letsencrypt_email
when: letsencrypt_email is defined and letsencrypt_email != ""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment