X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b20599b6503be65674c3e420be6cca91b507ac0a..ef9302d6b4f6bd5b72663af39e340782fdf511ec:/cookbooks/incron/recipes/default.rb diff --git a/cookbooks/incron/recipes/default.rb b/cookbooks/incron/recipes/default.rb index 29ba1e807..29cd2ebd4 100644 --- a/cookbooks/incron/recipes/default.rb +++ b/cookbooks/incron/recipes/default.rb @@ -8,7 +8,7 @@ # 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 @@ -37,11 +37,11 @@ node[:incron].each_value do |details| incrontabs[user].push("#{path} #{mask} #{command}") end -incrontabs.each do |user,lines| +incrontabs.each do |user, lines| file "/var/spool/incron/#{user}" do owner user group "incron" - mode 0600 + mode 0o600 content lines.join("\n") end end