From b818eb706bc3bce788df5434e678149cb601886f Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Tue, 23 May 2017 15:28:51 -0400 Subject: [PATCH] Removed the unnecessary list loop in the nsswitch.conf template --- nsswitch/files/nsswitch.conf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nsswitch/files/nsswitch.conf b/nsswitch/files/nsswitch.conf index 13af859..e32b6fa 100644 --- a/nsswitch/files/nsswitch.conf +++ b/nsswitch/files/nsswitch.conf @@ -9,10 +9,6 @@ # `info libc "Name Service Switch"' for information about this file. {%- for key, value in nsswitch.config.iteritems() %} - {%- if value is list %} -{{ key }}: {{ v for v in value }} - {%- else %} {{ key }}: {{ value }} - {%- endif %} {%- endfor %}