fix(synapse/goofys): resolve Jinja2 syntax error in systemd service template

Commit 4224741130 missed a endfor
statement in the goofys systemd service unit template. This adds it,
avoiding a Jinja2 syntax error when using goofys.
This commit is contained in:
Jim Myhrberg 2024-06-10 22:14:29 +01:00
parent 42b00fdff4
commit 247daf962f
No known key found for this signature in database
GPG Key ID: B85A9E6D6BBB670E

View File

@ -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]