projects
/
chef.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4633f48
)
Teach tilecache cookbook to return caches sorted (deterministic)
author
Grant Slater
<git@firefishy.com>
Thu, 20 Jun 2013 16:11:28 +0000
(17:11 +0100)
committer
Grant Slater
<git@firefishy.com>
Thu, 20 Jun 2013 16:11:28 +0000
(17:11 +0100)
cookbooks/tilecache/recipes/default.rb
patch
|
blob
|
history
diff --git
a/cookbooks/tilecache/recipes/default.rb
b/cookbooks/tilecache/recipes/default.rb
index 23edf015557950d6065b7e6db4c3be5b16b2ed97..b97f2d43ce692dc2339e692c74e7162dfc4c6b12 100644
(file)
--- a/
cookbooks/tilecache/recipes/default.rb
+++ b/
cookbooks/tilecache/recipes/default.rb
@@
-19,7
+19,11
@@
include_recipe "squid"
-tilecaches = search(:node, "roles:tilecache")
+expiry_time = 14 * 86400
+
+tilecaches = search(:node, "roles:tilecache").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.sort_by { |n| n[:hostname] }.map do |n|
+ { :name => n[:hostname], :interface => n.interfaces(:role => :external).first[:interface] }
+end
squid_fragment "tilecache" do
template "squid.conf.erb"