The plugin http_loadtime uses: TMPDIR=`mktemp -d` || exit 1 in one place, where for FreeBSD it needs to be (f.e.) TMPDIR=`mktemp -d /tmp/munin.http_loadtime.XXXXXX` || exit 1 so the plugin doesn't work out of the box. Fix: TMPDIR=`mktemp -d` || exit 1 replaced by TMPDIR=`mktemp -d /tmp/munin.http_loadtime.XXXXXX` || exit 1 How-To-Repeat: install munin-node and activate the plugin
Responsible Changed From-To: freebsd-ports-bugs->des Assign after fixing Synopsis.
Responsible Changed From-To: des->flo Over to new maintainer.
flo 2011-02-15 00:11:56 UTC FreeBSD ports repository Modified files: sysutils/munin-node Makefile pkg-deinstall pkg-install sysutils/munin-node/files patch-node-node.d.freebsd-coretemp.diff patch-node-node.d.freebsd-dev_cpu_.diff Added files: sysutils/munin-node/files patch-plugins__node.d__http_loadtime.in Log: - fix newsyslog entries, logs have been living in /var/log/munin for some time now [1] - fix http_loadtime plugin [2] - fix coretemp and dev_cpu plugins [3] PR: ports/151182 [1], ports/154688 [2], ports/154584 [3] Submitted by: Detlef Peeters <dp@heringa.de> [1] Oliver Brandmueler <ob@e-gitt.net> [2] Hiroki (REO) Kashiwazaki <reo@iic.hokudai.ac.jp> [3] Revision Changes Path 1.40 +1 -1 ports/sysutils/munin-node/Makefile 1.2 +3 -3 ports/sysutils/munin-node/files/patch-node-node.d.freebsd-coretemp.diff 1.2 +3 -3 ports/sysutils/munin-node/files/patch-node-node.d.freebsd-dev_cpu_.diff 1.1 +11 -0 ports/sysutils/munin-node/files/patch-plugins__node.d__http_loadtime.in (new) 1.9 +3 -3 ports/sysutils/munin-node/pkg-deinstall 1.9 +2 -2 ports/sysutils/munin-node/pkg-install _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!