]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/recipes/default.rb
Replace fastest-peers script with an ohai plugin to populate siblings
[chef.git] / cookbooks / tilecache / recipes / default.rb
index 395ee54dcdd8106240026b122447a12096c1fad5..16a8af1be66f1f547e97a98307d048e8b0ca45c8 100644 (file)
 
 require "ipaddr"
 
-include_recipe "ssl"
-include_recipe "squid"
-include_recipe "nginx"
 include_recipe "fail2ban"
+include_recipe "munin"
+include_recipe "nginx"
+include_recipe "squid"
+include_recipe "ssl"
 
 package "apache2" do
   action :remove
 end
 
 package %w[
+  curl
   xz-utils
   openssl
 ]
@@ -100,25 +102,6 @@ squid_fragment "tilecache" do
   variables :caches => tilecaches, :renders => tilerenders
 end
 
-if node[:packages][:squid][:version].to_f < 4.9
-  Array(node[:squid][:cache_dir]).each do |cache_dir|
-    if cache_dir =~ /^coss (\S+) /
-      cache_dir = File.dirname(Regexp.last_match(1))
-    elsif cache_dir =~ /^\S+ (\S+) /
-      cache_dir = Regexp.last_match(1)
-    end
-
-    file "#{cache_dir}/rock" do
-      action :delete
-      backup false
-    end
-  end
-
-  package "squid" do
-    action :upgrade
-  end
-end
-
 package "rsync"
 
 template "/etc/logrotate.d/squid" do
@@ -128,16 +111,6 @@ template "/etc/logrotate.d/squid" do
   mode 0o644
 end
 
-# Configure cron with lower cpu and IO priority
-systemd_service "cron-load" do
-  service "cron"
-  dropin "load"
-  nice 19
-  io_scheduling_class "best-effort"
-  io_scheduling_priority 7
-  notifies :restart, "service[cron]"
-end
-
 nginx_site "default" do
   action [:delete]
 end
@@ -198,3 +171,45 @@ tilerenders.each do |render|
     conf_variables :host => render[:fqdn]
   end
 end
+
+template "/etc/cron.d/tilecache" do
+  source "cron.erb"
+  owner "root"
+  group "root"
+  mode 0o644
+end
+
+directory "/srv/tilecache" do
+  owner "root"
+  group "root"
+  mode 0o755
+end
+
+directory "/srv/tilecache/data" do
+  owner "www-data"
+  group "www-data"
+  mode 0o755
+end
+
+cookbook_file "/srv/tilecache/tilecache-curl-time.txt" do
+  source "tilecache-curl-time.txt"
+  owner "root"
+  group "root"
+  mode 0o755
+end
+
+template "/srv/tilecache/tilecache-curl-time" do
+  source "tilecache-curl-time.erb"
+  owner "root"
+  group "root"
+  mode 0o755
+  variables :caches => tilecaches, :renders => tilerenders
+end
+
+file "/srv/tilecache/tilecache-fastest-peers" do
+  action :delete
+end
+
+ohai_plugin "tilecache" do
+  template "ohai.rb.erb"
+end