Merge "Fixing deprecation warnings in logrotate module"

This commit is contained in:
Jenkins 2014-09-03 23:26:18 +00:00 committed by Gerrit Code Review
commit 112f90c480
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 -%>
}