aboutsummaryrefslogtreecommitdiff
path: root/sysutils/munin-master/files/patch-Makefile.config
diff options
context:
space:
mode:
authorFlorian Smeets <flo@FreeBSD.org>2012-09-13 22:00:33 +0000
committerFlorian Smeets <flo@FreeBSD.org>2012-09-13 22:00:33 +0000
commit8b61b2876cc5407f25f6d9cd5d8bebe397a60668 (patch)
treefafd474ebc08428c29c584a1087331befe40abec /sysutils/munin-master/files/patch-Makefile.config
parentce2fc14864c360de5ddb0878fdcda0e04e0ea849 (diff)
- Update to 2.0.6 based on [1]
- Add support for ada disk devices to hddtemp_smartctl [2] - Add a patch for upstream bug 1251 to prevent huge munin-graph.log files PR: ports/171116 [1] PR: ports/169287 [2] Submitted by: mm [1], TAKEMON Takashi <takemon@bamboogate.co.jp> [2]
Notes
Notes: svn path=/head/; revision=304233
Diffstat (limited to 'sysutils/munin-master/files/patch-Makefile.config')
-rw-r--r--sysutils/munin-master/files/patch-Makefile.config14
1 files changed, 0 insertions, 14 deletions
diff --git a/sysutils/munin-master/files/patch-Makefile.config b/sysutils/munin-master/files/patch-Makefile.config
deleted file mode 100644
index 98a7052bf8ae..000000000000
--- a/sysutils/munin-master/files/patch-Makefile.config
+++ /dev/null
@@ -1,14 +0,0 @@
---- Makefile.config.orig 2009-12-30 05:55:56.000000000 -0700
-+++ Makefile.config 2010-01-30 11:17:34.000000000 -0700
-@@ -126,9 +129,8 @@
- # Which command to use to check if the USER and GROUP to run Munin as, exists.
- # These will work on most modern OSes:
- #
--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"))
-+CHECKUSER:= $(shell /usr/sbin/pw user show $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistant. Create the user and retry; exit 2"))
-+CHECKGROUP:= $(shell /usr/sbin/pw group show $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistant. Create the group and retry; exit 2"))
-
- # For OSX, comment out the previous two lines and comment in these
- #