]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/templates/default/service.erb
4cac416f75f17dee5fa74a019a04e37444892c54
[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 <% if @limit_as -%>
18 LimitAS=<%= @limit_as %>
19 <% end -%>
20 <% if @memory_low -%>
21 MemoryLow=<%= @memory_low %>
22 <% end -%>
23 <% if @memory_high -%>
24 MemoryHigh=<%= @memory_high %>
25 <% end -%>
26 <% if @memory_max -%>
27 MemoryMax=<%= @memory_max %>
28 <% end -%>
29 <% @environment.each do |name,value| -%>
30 Environment="<%= name %>=<%= value %>"
31 <% end -%>
32 <% if @environment_file -%>
33 EnvironmentFile=<%= @environment_file %>
34 <% end -%>
35 <% if @user -%>
36 User=<%= @user %>
37 <% end -%>
38 <% if @group -%>
39 Group=<%= @group %>
40 <% end -%>
41 <% if @working_directory -%>
42 WorkingDirectory=<%= @working_directory %>
43 <% end -%>
44 <% if @exec_start_pre -%>
45 ExecStartPre=<%= @exec_start_pre %>
46 <% end -%>
47 ExecStart=<%= @exec_start %>
48 <% if @exec_start_post -%>
49 ExecStartPost=<%= @exec_start_post %>
50 <% end -%>
51 <% if @exec_stop -%>
52 ExecStop=<%= @exec_stop %>
53 <% end -%>
54 <% if @exec_reload -%>
55 ExecReload=<%= @exec_reload %>
56 <% end -%>
57 <% if @runtime_directory -%>
58 RuntimeDirectory=<%= @runtime_directory %>
59 <% end -%>
60 <% if @runtime_directory_mode -%>
61 RuntimeDirectoryMode=<%= sprintf("0%o", @runtime_directory_mode) %>
62 <% end -%>
63 <% if @standard_input -%>
64 StandardInput=<%= @standard_input %>
65 <% end -%>
66 <% if @standard_output -%>
67 StandardOutput=<%= @standard_output %>
68 <% end -%>
69 <% if @standard_error -%>
70 StandardError=<%= @standard_error %>
71 <% end -%>
72 <% if @private_tmp -%>
73 PrivateTmp=<%= @private_tmp %>
74 <% end -%>
75 <% if @private_devices -%>
76 PrivateDevices=<%= @private_devices %>
77 <% end -%>
78 <% if @private_network -%>
79 PrivateNetwork=<%= @private_network %>
80 <% end -%>
81 <% if @protect_system -%>
82 ProtectSystem=<%= @protect_system %>
83 <% end -%>
84 <% if @protect_home -%>
85 ProtectHome=<%= @protect_home %>
86 <% end -%>
87 <% if @no_new_privileges -%>
88 NoNewPrivileges=<%= @no_new_privileges %>
89 <% end -%>
90 <% if @success_exit_status -%>
91 SuccessExitStatus=<%= Array(@success_exit_status).join(" ") %>
92 <% end -%>
93 <% if @restart -%>
94 Restart=<%= @restart %>
95 <% end -%>
96 <% if @timeout_sec -%>
97 TimeoutSec=<%= @timeout_sec %>
98 <% end -%>
99 <% if @pid_file -%>
100 PIDFile=<%= @pid_file %>
101 <% end -%>
102
103 [Install]
104 WantedBy=multi-user.target