]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/templates/default/service.erb
13983b02b69c9dc35b660ce853b8a8e974f68bf0
[chef.git] / cookbooks / systemd / templates / default / service.erb
1 [Unit]
2 Description=<%= @description %>
3 <% if @after -%>
4 After=<%= Array(@after).join(" ") %>
5 <% end -%>
6
7 [Service]
8 Type=<%= @type %>
9 <% if @limit_nofile -%>
10 LimitNOFILE=<%= @limit_nofile %>
11 <% end -%>
12 <% @environment.each do |name,value| -%>
13 Environment="<%= name %>=<%= value %>"
14 <% end -%>
15 <% if @environment_file -%>
16 EnvironmentFile=<%= @environment_file %>
17 <% end -%>
18 <% if @exec_start_pre -%>
19 ExecStartPre=<%= @exec_start_pre %>
20 <% end -%>
21 ExecStart=<%= @exec_start %>
22 <% if @exec_start_post -%>
23 ExecStartPost=<%= @exec_start_post %>
24 <% end -%>
25 <% if @exec_stop -%>
26 ExecStop=<%= @exec_stop %>
27 <% end -%>
28 <% if @exec_reload -%>
29 ExecReload=<%= @exec_reload %>
30 <% end -%>
31 <% if @restart -%>
32 Restart=<%= @restart %>
33 <% end -%>
34 <% if @timeout_sec -%>
35 TimeoutSec=<%= @timeout_sec %>
36 <% end -%>
37
38 [Install]
39 WantedBy=multi-user.target