]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/templates/default/service.erb
Make renderd run as a native systemd service
[chef.git] / cookbooks / systemd / templates / default / service.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 [Unit]
4 Description=<%= @description %>
5 <% if @after -%>
6 After=<%= Array(@after).join(" ") %>
7 <% end -%>
8 <% if @wants -%>
9 Wants=<%= Array(@wants).join(" ") %>
10 <% end -%>
11
12 [Service]
13 Type=<%= @type %>
14 <% if @limit_nofile -%>
15 LimitNOFILE=<%= @limit_nofile %>
16 <% end -%>
17 <% @environment.each do |name,value| -%>
18 Environment="<%= name %>=<%= value %>"
19 <% end -%>
20 <% if @environment_file -%>
21 EnvironmentFile=<%= @environment_file %>
22 <% end -%>
23 <% if @user -%>
24 User=<%= @user %>
25 <% end -%>
26 <% if @group -%>
27 Group=<%= @group %>
28 <% end -%>
29 <% if @exec_start_pre -%>
30 ExecStartPre=<%= @exec_start_pre %>
31 <% end -%>
32 ExecStart=<%= @exec_start %>
33 <% if @exec_start_post -%>
34 ExecStartPost=<%= @exec_start_post %>
35 <% end -%>
36 <% if @exec_stop -%>
37 ExecStop=<%= @exec_stop %>
38 <% end -%>
39 <% if @exec_reload -%>
40 ExecReload=<%= @exec_reload %>
41 <% end -%>
42 <% if @standard_input -%>
43 StandardInput=<%= @standard_input %>
44 <% end -%>
45 <% if @standard_output -%>
46 StandardOutput=<%= @standard_output %>
47 <% end -%>
48 <% if @standard_error -%>
49 StandardError=<%= @standard_error %>
50 <% end -%>
51 <% if @private_tmp -%>
52 PrivateTmp=<%= @private_tmp %>
53 <% end -%>
54 <% if @private_devices -%>
55 PrivateDevices=<%= @private_devices %>
56 <% end -%>
57 <% if @private_network -%>
58 PrivateNetwork=<%= @private_network %>
59 <% end -%>
60 <% if @protect_system -%>
61 ProtectSystem=<%= @protect_system %>
62 <% end -%>
63 <% if @protect_home -%>
64 ProtectHome=<%= @protect_home %>
65 <% end -%>
66 <% if @restart -%>
67 Restart=<%= @restart %>
68 <% end -%>
69 <% if @timeout_sec -%>
70 TimeoutSec=<%= @timeout_sec %>
71 <% end -%>
72 <% if @pid_file -%>
73 PIDFile=<%= @pid_file %>
74 <% end -%>
75
76 [Install]
77 WantedBy=multi-user.target