diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2014-12-10 15:52:14 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2014-12-10 15:52:14 +0000 |
commit | 2ff6de7ee9df7257463fcccb9cc62815f7971552 (patch) | |
tree | e2208a6fea71c2f18a82ec66c6b61c7803a64617 /sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in | |
parent | Remove the USE_LDCONFIG -- the shared library installed by this port is (diff) |
Fix the bind9_rndc plugin wrt Perl 5.18+ hash randomzation.
While there, group all patches for the three ports in munin-common, and remove
an obsolete patch.
PR: 195689
Submitted by: Vlad "Blackflow" K.
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=374474
Diffstat (limited to 'sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in')
-rw-r--r-- | sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in b/sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in new file mode 100644 index 000000000000..5ee2534c53f6 --- /dev/null +++ b/sysutils/munin-common/files/patch-plugins_node.d.freebsd_iostat.in @@ -0,0 +1,16 @@ +--- plugins/node.d.freebsd/iostat.in.orig 2014-11-24 21:46:24 UTC ++++ plugins/node.d.freebsd/iostat.in +@@ -56,13 +56,11 @@ if [ "$1" = "config" ]; then + for d in $drives; do + echo "${d}_read.label ${d}" + echo "${d}_read.type DERIVE" +- echo "${d}_read.max 2000" + echo "${d}_read.min 0" + echo "${d}_read.graph no" + echo "${d}_write.label ${d}" + echo "${d}_write.info I/O on device ${d}" + echo "${d}_write.type DERIVE" +- echo "${d}_write.max 2000" + echo "${d}_write.min 0" + echo "${d}_write.negative ${d}_read" + done |