MurgaNikolay/chef-eye

View on GitHub
templates/default/config.erb

Summary

Maintainability
Test Coverage
#
# This file was generated by chef for
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN BY CHEF CLIENT
#
<% if @plugins && @plugins.size > 0 %>
<% @plugins.each do |req|%>
require '<%=req %>'
<% end %>
<% end %>
<% if @config && !@config.empty? %>
Eye.config do
<%=render_config(@config) %>
end
<% end %>
<% if @config_dir %>
Eye.load('<%=@config_dir %>/*.eye')
<% end %>
<% if @config_files %>
  <% Array(@config_files).each do |file| %>
Eye.load('<%=file %>')
  <% end %>
<% end %>