freebsd-ports/sysutils/munin-node/files/patch-plugins__node.d__colour_tester.in
Martin Wilke 5ef5c452ab - Use jot(1) instead of seq(1) (GNU seq(1) does not exist on FreeBSD. Use jot(1) instead.)
- While here drop MD5 support

PR:		144602
Submitted by:	lth@
Approved by:	maintainer timeout
Feature safe:	yes
2011-02-05 06:09:10 +00:00

11 lines
322 B
Text

--- ./plugins/node.d/colour_tester.in.orig 2010-03-09 22:23:28.000000000 +0100
+++ ./plugins/node.d/colour_tester.in 2010-03-09 22:23:46.000000000 +0100
@@ -29,7 +29,7 @@ NUMCOL=$(($I - 1))
do_ () { # Fetch
- for I in $(seq 1 $NUMCOL); do
+ for I in $(jot - 1 $NUMCOL); do
echo "l$I.value $I"
done
}