2 # Cookbook Name:: imagery
3 # Resource:: imagery_layer
5 # Copyright 2016, OpenStreetMap Foundation
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
20 default_action :create
22 property :name, String
23 property :site, String, :required => true
24 property :source, String, :required => true
25 property :text, String
26 property :copyright, String, :default => "Copyright"
27 property :projection, String, :default => "EPSG:3857"
28 property :palette, String
29 property :extent, String
30 property :background, String
31 property :resample, String, :default => "average"
32 property :imagemode, String
33 property :extension, String
34 property :max_zoom, Fixnum, :default => 23
37 template "/srv/imagery/mapserver/layer-#{name}.map" do
39 source "mapserver.map.erb"
43 variables new_resource.to_hash
46 template "/etc/init/mapserv-fgi-layer-#{name}.conf" do
48 source "mapserv_fcgi.conf.erb"
52 variables new_resource.to_hash
55 service "mapserv-fgi-layer-#{name}.conf" do
56 provider Chef::Provider::Service::Upstart
57 action [:enable, :start]
58 supports :status => true, :restart => true, :reload => false
59 subscribes :restart, "template[/srv/imagery/mapserver/layer-#{name}.map]"
60 subscribes :restart, "template[/etc/init/mapserv-fgi-layer-#{name}.conf]"