Fixing deprecation warnings in logrotate module

Change-Id: I9e69cc96db5e84e729d7bdbe655c3933886903ce
This commit is contained in:
Spencer Krum 2014-08-25 16:34:44 -07:00
parent 7d0d6df746
commit bdee020d9e
1 changed files with 10 additions and 10 deletions

View File

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