X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1322a7380e34a8f7b66943ffd10dff3b68dfa806..a48d3c6dbc350bfb430691dbc128ff06ad8f979a:/cookbooks/tile/recipes/default.rb diff --git a/cookbooks/tile/recipes/default.rb b/cookbooks/tile/recipes/default.rb index c1327d811..9aa99b934 100644 --- a/cookbooks/tile/recipes/default.rb +++ b/cookbooks/tile/recipes/default.rb @@ -17,6 +17,7 @@ # limitations under the License. # +include_recipe "accounts" include_recipe "apache" include_recipe "git" include_recipe "munin" @@ -394,6 +395,7 @@ end postgresql_extension "hstore" do cluster node[:tile][:database][:cluster] database "gis" + only_if { node[:tile][:database][:hstore] } end %w[geography_columns planet_osm_nodes planet_osm_rels planet_osm_ways raster_columns raster_overviews spatial_ref_sys].each do |table| @@ -419,7 +421,14 @@ postgresql_munin "gis" do database "gis" end -file node[:tile][:node_file] do +directory File.dirname(node[:tile][:database][:node_file]) do + owner "root" + group "root" + mode 0o755 + recursive true +end + +file node[:tile][:database][:node_file] do owner "tile" group "www-data" mode 0o660