Skip to content

Commit

Permalink
Avoid spacing changes after switching to EPP
Browse files Browse the repository at this point in the history
In #944, we switched from ERB to EPP.  This has not been released yet,
but while testing I spotted some white space changes that where
unexpected.

Adjust the code so that the EPP template produce the same result as the
ERB template did, making changes more relevant to end-users if they see
some files being changed.
  • Loading branch information
smortex committed Jan 8, 2024
1 parent 757dc37 commit 13680be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<% if $service_after_override { -%>
[Unit]
After=<%= $service_after_override %>
<% } -%>

<% } -%>
[Service]
EnvironmentFile=-/etc/default/docker
EnvironmentFile=-/etc/default/docker-storage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<% if $service_after_override { -%>
[Unit]
After=<%= $service_after_override %>
<% } -%>

<% } -%>
[Service]
EnvironmentFile=-/etc/sysconfig/docker
EnvironmentFile=-/etc/sysconfig/docker-storage
Expand Down

0 comments on commit 13680be

Please sign in to comment.