tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
tilerenders = search(:node, "roles:tile").sort_by { |n| n[:hostname] }
-tilecache_tokens = data_bag_item("tilecache", "tokens")
+web_passwords = data_bag_item("web", "passwords")
tilecaches.each do |cache|
cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address|
owner "root"
group "root"
mode 0o750
- variables :tokens => tilecache_tokens
+ variables :totp_key => web_passwords["totp_key"]
end
template "/etc/cron.d/tilecache" do
mode 0o644
end
-execute 'execute_nginx_generate_tilecache_qos_map' do
- command '/usr/local/bin/nginx_generate_tilecache_qos_map'
- creates '/etc/nginx/conf.d/tile_qos_rates.map'
+execute "execute_nginx_generate_tilecache_qos_map" do
+ command "/usr/local/bin/nginx_generate_tilecache_qos_map"
+ creates "/etc/nginx/conf.d/tile_qos_rates.map"
action :run
end