From 60691ef20d796d8f774954cbd288aa8b197f4d99 Mon Sep 17 00:00:00 2001 From: jvblasco Date: Fri, 22 May 2015 14:32:57 +0200 Subject: [PATCH] Fix bug that added : at the end of the key --- openssh/auth.sls | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssh/auth.sls b/openssh/auth.sls index 8825991..50a52b0 100644 --- a/openssh/auth.sls +++ b/openssh/auth.sls @@ -1,8 +1,8 @@ {%- macro print_name(identifier, key) -%} {%- if 'name' in key %} -{{ key['name'] }}: +{{ key['name'] }} {%- else %} -{{ identifier }}: +{{ identifier }} {%- endif %} {%- endmacro -%}