summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-12-04 09:19:50 -0800
committerGitHub <noreply@github.com>2019-12-04 09:19:50 -0800
commit8f0dfc24af34d97c383e263dd79127de827ff74e (patch)
tree1c63c3ee1b4ac0b4d59f71e1ca59e1c93056ad33
parentc2a83cf012c30e2b49e9e2d10495e7d0765a55bf (diff)
parentba6229d236899acbfdc5432e4c3d78bd9e902098 (diff)
downloadchef-8f0dfc24af34d97c383e263dd79127de827ff74e.tar.gz
Merge pull request #9134 from bugok/master
[yum_repository] Add indentation for multiple baseurls
-rw-r--r--lib/chef/provider/support/yum_repo.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/support/yum_repo.erb b/lib/chef/provider/support/yum_repo.erb
index f60d8688da..7a55c1b7d2 100644
--- a/lib/chef/provider/support/yum_repo.erb
+++ b/lib/chef/provider/support/yum_repo.erb
@@ -6,7 +6,7 @@ name=<%= @config.description %>
<% if @config.baseurl %>
baseurl=<%= case @config.baseurl
when Array
- @config.baseurl.join("\n")
+ @config.baseurl.join("\n ")
else
@config.baseurl
end %>