]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/incron/recipes/default.rb
Update formatting of header comments
[chef.git] / cookbooks / incron / recipes / default.rb
index d4a17617935a5294df64dfdab51a91f8040e38e0..f7d44a45e8949e1c35a84ffbeed5550621f19f15 100644 (file)
@@ -1,14 +1,14 @@
 #
 #
-# Cookbook Name:: incron
+# Cookbook:: incron
 # Recipe:: default
 #
 # 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
 #
 #
 # 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,
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
 package "incron"
 
 service "incron" do
 package "incron"
 
 service "incron" do
-  action [ :enable, :start ]
+  action [:enable, :start]
   supports :status => true, :reload => true, :restart => true
 end
 
 incrontabs = {}
 
   supports :status => true, :reload => true, :restart => true
 end
 
 incrontabs = {}
 
-node[:incron].each do |name,details|
+node[:incron].each_value do |details|
   user = details[:user]
   path = details[:path]
   mask = details[:events].join(",")
   user = details[:user]
   path = details[:path]
   mask = details[:events].join(",")
@@ -37,11 +37,11 @@ node[:incron].each do |name,details|
   incrontabs[user].push("#{path} #{mask} #{command}")
 end
 
   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"
   file "/var/spool/incron/#{user}" do
     owner user
     group "incron"
-    mode 0600
+    mode 0o600
     content lines.join("\n")
   end
 end
     content lines.join("\n")
   end
 end