logrotate: Remove redundant blank lines

Current logrotate.conf includes multiple blank lines. This change
removes these lines to make the file minimum and more readable.

Change-Id: I5d085b20c06057515ae48ffdfa3dcb5705a4fd63
This commit is contained in:
Takashi Kajinami 2022-02-02 09:24:37 +09:00
parent 6c94352ee9
commit 70eb69d468
1 changed files with 14 additions and 14 deletions

View File

@ -9,25 +9,25 @@
# required for GDPR compliance.
maxsize <%= @maxsize %>
missingok
<%- if @notifempty %>
<%- if @notifempty -%>
notifempty
<%- end %>
<%- if @copytruncate %>
<%- end -%>
<%- if @copytruncate -%>
copytruncate
<%- end %>
<%- if @delaycompress %>
<%- end -%>
<%- if @delaycompress -%>
delaycompress
<%- end %>
<%- if @compress %>
<%- end -%>
<%- if @compress -%>
compress
<%- end %>
<%- if @dateext %>
<%- end -%>
<%- if @dateext -%>
dateext
<%- if @dateformat %>
<%- if @dateformat -%>
dateformat <%= @dateformat %>
<%- end %>
<%- if @dateyesterday %>
<%- end -%>
<%- if @dateyesterday -%>
dateyesterday
<%- end %>
<%- end %>
<%- end -%>
<%- end -%>
}