]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/templates/default/service.erb
Convert gps-update service to a systemd unit
[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 @working_directory -%>
30 WorkingDirectory=<%= @working_directory %>
31 <% end -%>
32 <% if @exec_start_pre -%>
33 ExecStartPre=<%= @exec_start_pre %>
34 <% end -%>
35 ExecStart=<%= @exec_start %>
36 <% if @exec_start_post -%>
37 ExecStartPost=<%= @exec_start_post %>
38 <% end -%>
39 <% if @exec_stop -%>
40 ExecStop=<%= @exec_stop %>
41 <% end -%>
42 <% if @exec_reload -%>
43 ExecReload=<%= @exec_reload %>
44 <% end -%>
45 <% if @runtime_directory -%>
46 RuntimeDirectory=<%= @runtime_directory %>
47 <% end -%>
48 <% if @runtime_directory_mode -%>
49 RuntimeDirectoryMode=<%= sprintf("0%o", @runtime_directory_mode) %>
50 <% end -%>
51 <% if @standard_input -%>
52 StandardInput=<%= @standard_input %>
53 <% end -%>
54 <% if @standard_output -%>
55 StandardOutput=<%= @standard_output %>
56 <% end -%>
57 <% if @standard_error -%>
58 StandardError=<%= @standard_error %>
59 <% end -%>
60 <% if @private_tmp -%>
61 PrivateTmp=<%= @private_tmp %>
62 <% end -%>
63 <% if @private_devices -%>
64 PrivateDevices=<%= @private_devices %>
65 <% end -%>
66 <% if @private_network -%>
67 PrivateNetwork=<%= @private_network %>
68 <% end -%>
69 <% if @protect_system -%>
70 ProtectSystem=<%= @protect_system %>
71 <% end -%>
72 <% if @protect_home -%>
73 ProtectHome=<%= @protect_home %>
74 <% end -%>
75 <% if @no_new_privileges -%>
76 NoNewPrivileges=<%= @no_new_privileges %>
77 <% end -%>
78 <% if @restart -%>
79 Restart=<%= @restart %>
80 <% end -%>
81 <% if @timeout_sec -%>
82 TimeoutSec=<%= @timeout_sec %>
83 <% end -%>
84 <% if @pid_file -%>
85 PIDFile=<%= @pid_file %>
86 <% end -%>
87
88 [Install]
89 WantedBy=multi-user.target