puppet-logrotate/templates/config.erb
Spencer Krum bdee020d9e Fixing deprecation warnings in logrotate module
Change-Id: I9e69cc96db5e84e729d7bdbe655c3933886903ce
2014-08-27 16:40:00 -07:00

25 lines
420 B
Plaintext

<%= @log %> {
<% @options.each do |opt| -%> <%= opt %>
<% end -%>
<% if @prerotate != 'undef' -%>
prerotate
<%= @prerotate %>
endscript
<% end -%>
<% if @postrotate != 'undef' -%>
postrotate
<%= @postrotate %>
endscript
<% end -%>
<% if @firstaction != 'undef' -%>
firstaction
<%= @firstaction %>
endscript
<% end -%>
<% if @lastaction != 'undef' -%>
lastaction
<%= @lastaction %>
endscript
<% end -%>
}