From e4e8ca9075d9daf71757dd777e16ef9922ed8af0 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 20 Jul 2022 16:09:04 +0200 Subject: [PATCH] fix: ssh client config without = --- templates/config.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.j2 b/templates/config.j2 index ec88203..5d24ca4 100644 --- a/templates/config.j2 +++ b/templates/config.j2 @@ -8,7 +8,7 @@ {% if property == "Host" %} {{ property }} {{ value }} {% else %} - {{ property }} = {{ value }} + {{ property }} {{ value }} {% endif %} {% endfor %} {% endfor %} \ No newline at end of file