#
-# 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,
include_recipe "apache"
-package "munin"
-package "rrdcached"
-
-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_site "munin.openstreetmap.org" do
- template "apache.erb"
+package "munin" do
+ action :purge
+end
+
+package "rrdcached" do
+ action :purge
end
-munin_plugin "munin_stats"
-munin_plugin "munin_update"
+package "libcgi-fast-perl" do
+ action :purge
+end