]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/web/recipes/statistics.rb
Remove cleanup code
[chef.git] / cookbooks / web / recipes / statistics.rb
index c7bf9e81a5d5d85b0a1e08d2536581dc6ad9ec96..b6fbd5a3d658188e8b8658ca3593045505d97230 100644 (file)
@@ -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,
 
 include_recipe "web::base"
 
+ruby = "ruby#{node[:passenger][:ruby_version]}"
 rails_directory = "#{node[:web][:base_directory]}/rails"
 
 template "/usr/local/bin/statistics" do
   source "statistics.erb"
   owner "root"
   group "root"
-  mode 0755
-  variables :directory => rails_directory
+  mode 0o755
+  variables :ruby => ruby, :directory => rails_directory
 end
 
 template "/etc/cron.d/statistics" do
   source "statistics.cron.erb"
   owner "root"
   group "root"
-  mode 0644
+  mode 0o644
 end