X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/18d192a0b455a06baa03b76f87f4e97cad6c1a3f..1751b31885773d33dcf3efb396f198f1d10a2221:/cookbooks/munin/recipes/server.rb diff --git a/cookbooks/munin/recipes/server.rb b/cookbooks/munin/recipes/server.rb index 84c739e49..fda514948 100644 --- a/cookbooks/munin/recipes/server.rb +++ b/cookbooks/munin/recipes/server.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: munin +# Cookbook:: munin # Recipe:: server # -# Copyright 2010, OpenStreetMap Foundation +# Copyright:: 2010, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -19,56 +19,48 @@ include_recipe "apache" -package "munin" -package "rrdcached" -package "libcgi-fast-perl" - -template "/etc/default/rrdcached" do - source "rrdcached.erb" - owner "root" - group "root" - mode 0644 +file "/etc/default/rrdcached" do + action :delete end directory "/var/lib/munin/rrdcached" do - owner "munin" - group "munin" - mode 0755 + action :delete + recursive true end service "rrdcached" do - action [:enable, :start] - subscribes :restart, "template[/etc/default/rrdcached]" + action [:stop, :disable] end -munin_plugin "rrdcached" +file "/etc/munin/munin.conf" do + action :delete +end -expiry_time = 14 * 86400 +directory "/srv/munin.openstreetmap.org" do + action :delete + recursive true +end -clients = search(:node, "recipes:munin").select { |n| n[:munin] }.sort_by { |n| n[:hostname] } -frontends = search(:node, "recipes:web\\:\\:frontend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map { |n| n[:hostname] }.sort -backends = search(:node, "recipes:web\\:\\:backend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map { |n| n[:hostname] }.sort -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] } +ssl_certificate "munin.openstreetmap.org" do + action :delete end -renderers = search(:node, "roles:tile").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] } + +apache_site "munin.openstreetmap.org" do + action :delete end -template "/etc/munin/munin.conf" do - source "munin.conf.erb" - owner "root" - group "root" - mode 0644 - variables :expiry_time => expiry_time, :clients => clients, :frontends => frontends, :backends => backends, :tilecaches => tilecaches, :renderers => renderers +file "/etc/cron.daily/munin-backup" do + action :delete end -apache_module "fcgid" -apache_module "rewrite" +package "munin" do + action :purge +end -apache_site "munin.openstreetmap.org" do - template "apache.erb" +package "rrdcached" do + action :purge end -munin_plugin "munin_stats" -munin_plugin "munin_update" +package "libcgi-fast-perl" do + action :purge +end