Revert "Fixing deprecation warnings"

This reverts commit 82b9b59522928863ddadeacfec819e287303ef20.

Change-Id: I746d7ae57802dc76618db9024a0cf94c43774c02
This commit is contained in:
James E. Blair 2014-07-02 17:35:02 +00:00
parent a38fb0780e
commit 7d0d6df746
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 -%>
}