allow to install murmur server

This commit is contained in:
HgO
2020-06-14 14:01:16 +02:00
parent f83faff3a3
commit 656c3a1cb1
7 changed files with 449 additions and 16 deletions

View File

@@ -1,12 +1,12 @@
{{ ansible_managed | comment }}
max_bandwidth = 48000;
max_bandwidth = {{ umurmur_max_bandwidth }};
welcometext = {{ umurmur_welcome_text
if umurmur_welcome_text is string
else (umurmur_welcome_text | join('<br />'))
| to_json }};
certificate = {{ umurmur_certificate | to_json }};
private_key = {{ umurmur_private_key | to_json }};
password = {{ umurmur_user_password | to_json }};
password = {{ umurmur_server_password | to_json }};
{% if umurmur_admin_password is defined %}
admin_password = {{ umurmur_admin_password | to_json }}; # Set to enable admin functionality.
{% endif %}