]> git.openstreetmap.org Git - chef.git/commitdiff
systemd: add dropin support for exec actions
authorGrant Slater <git@firefishy.com>
Sun, 2 Feb 2020 22:32:19 +0000 (22:32 +0000)
committerGrant Slater <git@firefishy.com>
Sun, 2 Feb 2020 22:32:19 +0000 (22:32 +0000)
cookbooks/systemd/templates/default/service.erb

index 0d4abbcefe493eedab4a3679a9829bcb78f82a2e..4828c96af6dd898da6ccad9821bd802ce545720c 100644 (file)
@@ -49,18 +49,33 @@ Group=<%= @group %>
 WorkingDirectory=<%= @working_directory %>
 <% end -%>
 <% if @exec_start_pre -%>
+<% if @dropin -%>
+ExecStartPre=
+<% end -%>
 ExecStartPre=<%= @exec_start_pre %>
 <% end -%>
 <% if @exec_start -%>
+<% if @dropin -%>
+ExecStart=
+<% end -%>
 ExecStart=<%= @exec_start %>
 <% end -%>
 <% if @exec_start_post -%>
+<% if @dropin -%>
+ExecStartPost=
+<% end -%>
 ExecStartPost=<%= @exec_start_post %>
 <% end -%>
 <% if @exec_stop -%>
+<% if @dropin -%>
+ExecStop=
+<% end -%>
 ExecStop=<%= @exec_stop %>
 <% end -%>
 <% if @exec_reload -%>
+<% if @dropin -%>
+ExecReload=
+<% end -%>
 ExecReload=<%= @exec_reload %>
 <% end -%>
 <% if @runtime_directory -%>