From 1feea03aaa771d53fb46d73a09facfd4cc05c49b Mon Sep 17 00:00:00 2001 From: Norbert Varzariu Date: Mon, 27 Jun 2016 13:21:03 +0200 Subject: [PATCH] removed single quotes in misc script template --- templates/misc.sh.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/misc.sh.erb b/templates/misc.sh.erb index 7185cc2..15c9520 100644 --- a/templates/misc.sh.erb +++ b/templates/misc.sh.erb @@ -2,6 +2,6 @@ #This file is managed by puppet # <%@commands.each do |command| -%> -ssh -l <%=@backup_user-%> <%=@host-%> '<%=command-%>' +ssh -l <%=@backup_user-%> <%=@host-%> <%=command-%> <%end-%>