From 5e4592f475fec57adea221301d1b5f7744c26260 Mon Sep 17 00:00:00 2001 From: Kim B. Heino Date: Aug 24 2018 17:37:57 +0000 Subject: Remove some leftover files --- diff --git a/munin-1.4.0-config.patch b/munin-1.4.0-config.patch deleted file mode 100644 index 52af5dd..0000000 --- a/munin-1.4.0-config.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -Nur munin-1.4.0.orig/dists/redhat/Makefile.config munin-1.4.0/dists/redhat/Makefile.config ---- munin-1.4.0.orig/dists/redhat/Makefile.config 2009-11-27 04:17:14.000000000 -0700 -+++ munin-1.4.0/dists/redhat/Makefile.config 2009-11-30 22:28:20.000000000 -0700 -@@ -23,7 +23,7 @@ - VERSION = $(shell cat RELEASE) - USER = munin - GROUP = munin --PLUGINUSER = nobody -+PLUGINUSER = munin - GETENT = $(shell which getent || which true 2>/dev/null) - CHECKUSER = $(shell $(GETENT) passwd $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistent. Create the user and retry; exit 2")) - CHECKGROUP = $(shell $(GETENT) group $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistent. Create the group and retry; exit 2")) -diff -Nur munin-1.4.0.orig/master/munin.conf.in munin-1.4.0/master/munin.conf.in ---- munin-1.4.0.orig/master/munin.conf.in 2009-11-27 04:17:18.000000000 -0700 -+++ munin-1.4.0/master/munin.conf.in 2009-11-30 22:28:20.000000000 -0700 -@@ -15,7 +15,7 @@ - - # (Exactly one) directory to include all files from. - # --includedir @@CONFDIR@@/munin-conf.d -+# includedir @@CONFDIR@@/munin-conf.d - - # Make graphs show values per minute instead of per second - #graph_period minute -@@ -57,7 +57,7 @@ - #contact.nagios.command /usr/bin/send_nsca nagios.host.comm -c /etc/nsca.conf - - # a simple host tree --[@@HOSTNAME@@] -+[localhost] - address 127.0.0.1 - use_node_name yes - diff --git a/munin-1.4.5-uppercase.patch b/munin-1.4.5-uppercase.patch deleted file mode 100644 index 3dcd53d..0000000 --- a/munin-1.4.5-uppercase.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nur munin-1.4.5.orig/node/lib/Munin/Node/Server.pm munin-1.4.5/node/lib/Munin/Node/Server.pm ---- munin-1.4.5.orig/node/lib/Munin/Node/Server.pm 2010-05-22 16:54:31.000000000 -0600 -+++ munin-1.4.5/node/lib/Munin/Node/Server.pm 2011-02-07 15:15:51.527998974 -0700 -@@ -171,7 +171,7 @@ - - logger ("DEBUG: Running command \"$_\".") if $config->{DEBUG}; - if (/^list\s*([0-9a-zA-Z\.\-]+)?/i) { -- _list_services($session, $1); -+ _list_services($session, lc($1)); - } - elsif (/^cap\s?(.*)/i) { - _negotiate_session_capabilities($session, $1); -@@ -309,7 +309,7 @@ - sub _list_services { - my ($session, $node) = @_; - -- $node ||= $config->{fqdn}; -+ $node ||= lc($config->{fqdn}); - - if (exists $nodes{$node}) { - my @services = @{$nodes{$node}};