]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/recipes/default.rb
Update formatting of header comments
[chef.git] / cookbooks / tilecache / recipes / default.rb
index d1773b506cb409b4d50d216f467810ced0ec13d5..f3b8382fbc05e4d851d30d0fddcb22e4af2ef637 100644 (file)
@@ -1,8 +1,8 @@
 #
-# Cookbook Name:: tilecache
+# Cookbook:: tilecache
 # Recipe:: default
 #
-# Copyright 2011, OpenStreetMap Foundation
+# Copyright:: 2011, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -77,6 +77,8 @@ squid_fragment "tilecache" do
   variables :caches => tilecaches, :renders => tilerenders
 end
 
+package "rsync"
+
 template "/etc/logrotate.d/squid" do
   source "logrotate.squid.erb"
   owner "root"
@@ -113,14 +115,14 @@ ssl_certificate "tile.openstreetmap.org" do
   domains ["tile.openstreetmap.org",
            "a.tile.openstreetmap.org",
            "b.tile.openstreetmap.org",
-           "c.tile.openstreetmap.org"]
+           "c.tile.openstreetmap.org",
+           "tile.osm.org",
+           "a.tile.osm.org",
+           "b.tile.osm.org",
+           "c.tile.osm.org"]
   notifies :restart, "service[nginx]"
 end
 
-nginx_site "tile-ssl" do
-  action :delete
-end
-
 nginx_site "tile" do
   template "nginx_tile.conf.erb"
   variables :caches => tilecaches
@@ -140,7 +142,3 @@ tilerenders.each do |render|
     conf_variables :host => render[:fqdn]
   end
 end
-
-Dir.glob("/var/log/nginx/access.log*") do |log|
-  File.unlink(log)
-end