]> git.openstreetmap.org Git - chef.git/blobdiff - roles/tilecache.rb
Make sure tile cookbook only requests the required postgres version
[chef.git] / roles / tilecache.rb
index adce84808c8130785e12e069cd6d73079edd3afa..a78cac73d107b1ca67666fd469da117ccb45206e 100644 (file)
@@ -9,9 +9,6 @@ default_attributes(
       }
     }
   },
-  :apt => {
-    :sources => ["nginx"]
-  },
   :networking => {
     :tcp_fastopen_key => "tile"
   },
@@ -40,7 +37,13 @@ default_attributes(
     :network_local_port_range => {
       :comment => "Increase available local port range",
       :parameters => {
-        "net.ipv4.ip_local_port_range" => "4096 64000"
+        "net.ipv4.ip_local_port_range" => "1024\t65535"
+      }
+    },
+    :network_tcp_timewait_reuse => {
+      :comment => "Allow tcp timewait reuse",
+      :parameters => {
+        "net.ipv4.tcp_tw_reuse" => 1
       }
     },
     :kernel_tfo_listen_enable => {
@@ -62,6 +65,15 @@ default_attributes(
         "kernel.sched_wakeup_granularity_ns" => "15000000"
       }
     }
+  },
+  :tools => {
+    :cron => {
+      :load => {
+        :nice => 19,
+        :io_scheduling_class => "best-effort",
+        :io_scheduling_priority => 7
+      }
+    }
   }
 )