From 247daf962fb2aeb1f0c0f5d48bab5a82c6b3462b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 10 Jun 2024 22:14:29 +0100 Subject: [PATCH] fix(synapse/goofys): resolve Jinja2 syntax error in systemd service template Commit 42247411308bd301b1c093ed132be0512368b885 missed a endfor statement in the goofys systemd service unit template. This adds it, avoiding a Jinja2 syntax error when using goofys. --- .../templates/goofys/systemd/matrix-goofys.service.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2 b/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2 index a4b74e67f..0f7a83620 100644 --- a/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2 +++ b/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2 @@ -4,6 +4,7 @@ Description=Matrix Goofys media store {% for service in matrix_synapse_goofys_systemd_required_services_list %} Requires={{ service }} After={{ service }} +{% endfor %} DefaultDependencies=no [Service]