fix umurmur deployment and remove ispublic flag
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
{{ ansible_managed | comment }}
|
||||
max_bandwidth = {{ umurmur_max_bandwidth }};
|
||||
welcometext = {{ umurmur_welcome_text
|
||||
if umurmur_welcome_text is string
|
||||
else (umurmur_welcome_text | join('<br />'))
|
||||
| to_json }};
|
||||
{% if umurmur_welcome_text is string %}
|
||||
welcometext = {{ umurmur_welcome_text | to_json }};
|
||||
{% else %}
|
||||
welcometext = {{ umurmur_welcome_text | join('<br />') | to_json }};
|
||||
{% endif %}
|
||||
certificate = {{ umurmur_certificate | to_json }};
|
||||
private_key = {{ umurmur_private_key | to_json }};
|
||||
password = {{ umurmur_server_password | to_json }};
|
||||
|
||||
Reference in New Issue
Block a user