From b258d0be6310e7e275d4e3f4a4ea7d1f48605455 Mon Sep 17 00:00:00 2001 From: Adam Lewenberg <adamhl@stanford.edu> Date: Tue, 13 Aug 2013 14:54:26 -0700 Subject: [PATCH] fixed Ruby syntax error --- templates/ssh/sshd_config.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/ssh/sshd_config.erb b/templates/ssh/sshd_config.erb index a1cdde1..373a136 100644 --- a/templates/ssh/sshd_config.erb +++ b/templates/ssh/sshd_config.erb @@ -83,7 +83,7 @@ Match User gitolite if (listen_addresses != 'all') # Split the addresses at the commas. addresses = listen_addresses.split(',') - addresses.each |address| do + addresses.each do |address| -%> ListenAddress <%= address %> <% -- GitLab