]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/templates/default/service.erb
703d6428144f21d77028cb1d247858bf3e23d5bb
[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 @runtime_directory -%>
43 RuntimeDirectory=<%= @runtime_directory %>
44 <% end -%>
45 <% if @runtime_directory_mode -%>
46 RuntimeDirectoryMode=<%= sprintf("0%o", @runtime_directory_mode) %>
47 <% end -%>
48 <% if @standard_input -%>
49 StandardInput=<%= @standard_input %>
50 <% end -%>
51 <% if @standard_output -%>
52 StandardOutput=<%= @standard_output %>
53 <% end -%>
54 <% if @standard_error -%>
55 StandardError=<%= @standard_error %>
56 <% end -%>
57 <% if @private_tmp -%>
58 PrivateTmp=<%= @private_tmp %>
59 <% end -%>
60 <% if @private_devices -%>
61 PrivateDevices=<%= @private_devices %>
62 <% end -%>
63 <% if @private_network -%>
64 PrivateNetwork=<%= @private_network %>
65 <% end -%>
66 <% if @protect_system -%>
67 ProtectSystem=<%= @protect_system %>
68 <% end -%>
69 <% if @protect_home -%>
70 ProtectHome=<%= @protect_home %>
71 <% end -%>
72 <% if @restart -%>
73 Restart=<%= @restart %>
74 <% end -%>
75 <% if @timeout_sec -%>
76 TimeoutSec=<%= @timeout_sec %>
77 <% end -%>
78 <% if @pid_file -%>
79 PIDFile=<%= @pid_file %>
80 <% end -%>
81
82 [Install]
83 WantedBy=multi-user.target