summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/virtual_host.cfg.lua.j26
-rw-r--r--playbook.yaml2
2 files changed, 5 insertions, 3 deletions
diff --git a/files/virtual_host.cfg.lua.j2 b/files/virtual_host.cfg.lua.j2
index c5700c2..203d1a8 100644
--- a/files/virtual_host.cfg.lua.j2
+++ b/files/virtual_host.cfg.lua.j2
@@ -45,7 +45,7 @@ site_name = "{{ virtual_host }}"
{% endif %}
privileged_entities = {
-{% for transport in transports %}
+{% for transport in transports | default([]) %}
["{{ transport.subdomain }}.{{ virtual_host }}"] = {
roster = "both";
message = "outgoing";
@@ -63,7 +63,7 @@ http_file_share_global_quota = 5 * 1024 * 1024 * 1024
{% if is_transport_server %}
http_file_share_access = {
-{% for transport in transports %}
+{% for transport in transports | default([]) %}
"{{ transport.subdomain }}.{{ virtual_host }}";
{% endfor %}
}
@@ -98,7 +98,7 @@ muc_room_default_public_jids = true
muc_rtbl_jid = "xmppbl.org"
{% endif %}
-{% for transport in transports %}
+{% for transport in transports | default([]) %}
Component "{{ transport.subdomain }}.{{ virtual_host }}"
component_secret = "{{ transport.secret }}"
modules_enabled = {
diff --git a/playbook.yaml b/playbook.yaml
index 0c1fb48..c0fc761 100644
--- a/playbook.yaml
+++ b/playbook.yaml
@@ -547,3 +547,5 @@
# If virtual_host is "continuous.nonprod.example.org", then ds_subname is
# "continuous.nonprod".
ds_subname: "{{ virtual_host | regex_replace('.' + domain_with_ds, '') }}"
+
+ is_transport_server: "{{ transports | default([]) | length > 0 }}"