]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tilelog/recipes/default.rb
Replace tile log analyser with new one for the new CDN
[chef.git] / cookbooks / tilelog / recipes / default.rb
1 #
2 # Cookbook:: tilelog
3 # Recipe:: default
4 #
5 # Copyright:: 2014, OpenStreetMap Foundation
6 #
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
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "python"
21
22 passwords = data_bag_item("tilelog", "passwords")
23
24 tilelog_output_directory = node[:tilelog][:output_directory]
25
26 python_package "tilelog" do
27   python_version "3"
28 end
29
30 directory tilelog_output_directory do
31   user "www-data"
32   group "www-data"
33   mode "755"
34   recursive true
35 end
36
37 template "/usr/local/bin/generate-tilelog" do
38   source "tilelog.erb"
39   owner "root"
40   group "root"
41   mode "755"
42   variables :output_dir => tilelog_output_directory,
43             :aws_key => passwords["aws_key"]
44 end
45
46 cron_d "tilelog" do
47   minute "17"
48   hour "22"
49   user "www-data"
50   command "/usr/local/bin/generate-tilelog"
51   mailto "admins@openstreetmap.org"
52 end