]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/recipes/default.rb
6793900eb4bf00342a421c01ec211d8c02f614b6
[chef.git] / cookbooks / imagery / recipes / default.rb
1 #
2 # Cookbook Name:: imagery
3 # Recipe:: default
4 #
5 # Copyright 2016, 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 #     http://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 "nginx"
21 include_recipe "git"
22
23 # Imagery gdal Requirements
24 package "gdal-bin"
25 package "python-gdal"
26
27 # Imagery MapServer + Mapcache Requirements
28 package "cgi-mapserver"
29 package "mapcache-cgi"
30 package "mapcache-tools"
31
32 # Imagery processing Requirements
33 package "imagemagick"
34
35 # Imagery misc compression
36 package "xz-utils"
37 package "unzip"
38
39 directory "/srv/imagery/common" do
40   owner "root"
41   group "root"
42   mode 0755
43   recursive true
44 end
45
46 directory "/srv/imagery/common/ostn02-ntv2-data" do
47   owner "root"
48   group "root"
49   mode 0755
50 end
51
52 remote_file "#{Chef::Config[:file_cache_path]}/ostn02-ntv2-data.zip" do
53   source "https://www.ordnancesurvey.co.uk/docs/gps/ostn02-ntv2-data.zip"
54   not_if { File.exist?("/srv/imagery/common/ostn02-ntv2-data/OSTN02_NTv2.gsb") }
55 end
56
57 execute "unzip-ostn02-ntv2-data" do
58   command "unzip -q #{Chef::Config[:file_cache_path]}/ostn02-ntv2-data.zip"
59   cwd "/srv/imagery/common/ostn02-ntv2-data"
60   user "root"
61   group "root"
62   not_if { File.exist?("/srv/imagery/common/ostn02-ntv2-data/OSTN02_NTv2.gsb") }
63 end