2 # Cookbook Name:: systemd
3 # Resource:: systemd_service
5 # Copyright 2016, OpenStreetMap Foundation
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
20 default_action :create
22 property :name, String
23 property :description, String, :required => true
24 property :after, [String, Array]
25 property :type, String,
27 :is => %w(simple forking oneshot dbus notify idle)
28 property :limit_nofile, Fixnum
29 property :environment, Hash, :default => {}
30 property :environment_file, String
31 property :user, String
32 property :group, String
33 property :exec_start_pre, String
34 property :exec_start, String, :required => true
35 property :exec_start_post, String
36 property :exec_stop, String
37 property :exec_reload, String
38 property :restart, String,
39 :is => %w(on-success on-failure on-abnormal on-watchdog on-abort always)
40 property :timeout_sec, Fixnum
43 template "/etc/systemd/system/#{name}.service" do
49 variables new_resource.to_hash
52 execute "systemctl-reload-#{name}.service" do
54 command "systemctl daemon-reload"
57 subscribes :run, "template[/etc/systemd/system/#{name}.service]"
62 file "/etc/systemd/system/#{name}.service" do
66 execute "systemctl-reload-#{name}.service" do
68 command "systemctl daemon-reload"
71 subscribes :run, "file[/etc/systemd/system/#{name}.service]"