]> git.openstreetmap.org Git - chef.git/blob - cookbooks/systemd/resources/service.rb
f0419b91146221fe333e5c8098c9d1e9d4e5231b
[chef.git] / cookbooks / systemd / resources / service.rb
1 #
2 # Cookbook Name:: systemd
3 # Resource:: systemd_service
4 #
5 # Copyright 2016, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 default_action :create
21
22 property :service, String, :name_property => true
23 property :description, String, :required => true
24 property :after, [String, Array]
25 property :wants, [String, Array]
26 property :type, String,
27          :default => "simple",
28          :is => %w[simple forking oneshot dbus notify idle]
29 property :limit_nofile, Integer
30 property :limit_as, [Integer, String]
31 property :memory_low, [Integer, String]
32 property :memory_high, [Integer, String]
33 property :memory_max, [Integer, String]
34 property :environment, Hash, :default => {}
35 property :environment_file, [String, Hash]
36 property :user, String
37 property :group, String
38 property :working_directory, String
39 property :exec_start_pre, String
40 property :exec_start, String, :required => true
41 property :exec_start_post, String
42 property :exec_stop, String
43 property :exec_reload, String
44 property :runtime_directory, String
45 property :runtime_directory_mode, Integer
46 property :standard_input, String,
47          :is => %w[null tty tty-force tty-fail socket]
48 property :standard_output, String,
49          :is => %w[inherit null tty journal syslog kmsg journal+console syslog+console kmsg+console socket]
50 property :standard_error, String,
51          :is => %w[inherit null tty journal syslog kmsg journal+console syslog+console kmsg+console socket]
52 property :success_exit_status, [Integer, String, Array]
53 property :restart, String,
54          :is => %w[on-success on-failure on-abnormal on-watchdog on-abort always]
55 property :private_tmp, [TrueClass, FalseClass]
56 property :private_devices, [TrueClass, FalseClass]
57 property :private_network, [TrueClass, FalseClass]
58 property :protect_system, [TrueClass, FalseClass, String]
59 property :protect_home, [TrueClass, FalseClass, String]
60 property :no_new_privileges, [TrueClass, FalseClass]
61 property :timeout_sec, Integer
62 property :pid_file, String
63
64 action :create do
65   service_variables = new_resource.to_hash
66
67   if new_resource.environment_file.is_a?(Hash)
68     template "/etc/default/#{new_resource.service}" do
69       cookbook "systemd"
70       source "environment.erb"
71       owner "root"
72       group "root"
73       mode 0o640
74       variables :environment => new_resource.environment_file
75     end
76
77     service_variables[:environment_file] = "/etc/default/#{new_resource.service}"
78   end
79
80   template "/etc/systemd/system/#{new_resource.service}.service" do
81     cookbook "systemd"
82     source "service.erb"
83     owner "root"
84     group "root"
85     mode 0o644
86     variables service_variables
87   end
88
89   execute "systemctl-reload-#{new_resource.service}.service" do
90     action :nothing
91     command "systemctl daemon-reload"
92     user "root"
93     group "root"
94     subscribes :run, "template[/etc/systemd/system/#{new_resource.service}.service]"
95   end
96 end
97
98 action :delete do
99   file "/etc/default/#{new_resource.service}" do
100     action :delete
101     only_if { new_resource.environment_file.is_a?(Hash) }
102   end
103
104   file "/etc/systemd/system/#{new_resource.service}.service" do
105     action :delete
106   end
107
108   execute "systemctl-reload-#{new_resource.service}.service" do
109     action :nothing
110     command "systemctl daemon-reload"
111     user "root"
112     group "root"
113     subscribes :run, "file[/etc/systemd/system/#{new_resource.service}.service]"
114   end
115 end