ansible-role-prosody-master/templates/modules/mod_motd_sequential.cfg.lua.j2

14 lines
326 B
Text
Raw Normal View History

2022-10-11 09:19:07 +02:00
{#
Prosody server template fragment for the `motd_sequential` module.
For details, see:
https://modules.prosody.im/mod_motd_sequential.html
#}
{% if cfg.motd_sequential_messages is defined %}
motd_sequential_messages = {
{% for m in cfg.motd_sequential_messages %}
[[{{ m }}]];
{% endfor %}
}
{% endif %}