X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/3a4b1c2078cd515e93a5f1bf8967f380fbd1646f..843030a13c911237a8643c7c51c7b8d28d228ad1:/cookbooks/incron/recipes/default.rb diff --git a/cookbooks/incron/recipes/default.rb b/cookbooks/incron/recipes/default.rb index ef44a693b..4c785d15e 100644 --- a/cookbooks/incron/recipes/default.rb +++ b/cookbooks/incron/recipes/default.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: incron +# Cookbook:: incron # Recipe:: default # -# Copyright 2014, OpenStreetMap Foundation +# Copyright:: 2014, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -20,7 +20,7 @@ package "incron" service "incron" do - action [ :enable, :start ] + action [:enable, :start] supports :status => true, :reload => true, :restart => true end @@ -41,7 +41,7 @@ incrontabs.each do |user, lines| file "/var/spool/incron/#{user}" do owner user group "incron" - mode 0600 + mode "600" content lines.join("\n") end end