-
some servers report an illegal mount with df and the ':'
change
for PART in $(df | grep '\/[a-z0-9]*$' | sed 's/ \{1,\}/ /g;' | cut -d\ -f6)
to
for PART in $(df | grep '\/[a-z0-9]*$' | sed 's/ \{1,\}/ /g;' | cut -d\ -f6 | grep -v \:)
added the 'grep -v \:' to skip illegal mounts in two places in the df plugin will fix this.
2009-03-27 14:29:50 UTC by keithtaylor
-
/proc/stat returns differently for older kernels
eg on my current 2.6 kernel box with 1 CPU
cat /proc/stat | grep cpu
cpu ..............
cpu0 ..............
but with a 2.0 kernel with 1 CPU
cat /proc/stat | grep cpu
cpu .....................
Adding the line
if [ $NCPU = 0 ]; then NCPU=1; fi
after the line that calculates the number of CPUs:
NCPU=$(($(grep '^cpu. '...
2009-03-27 14:26:45 UTC by keithtaylor
-
runesk added the muninlite-1.0.2.tar.gz file.
2009-03-17 12:52:03 UTC by runesk
-
runesk created the 1.0.2 file release.
2009-03-17 12:47:48 UTC by runesk
-
runesk committed revision 23 to the muninlite SVN repository, changing 1 files.
2009-03-17 12:42:38 UTC by runesk
-
runesk committed revision 22 to the muninlite SVN repository, changing 1 files.
2009-03-17 12:38:09 UTC by runesk
-
runesk committed revision 21 to the muninlite SVN repository, changing 1 files.
2009-03-17 12:36:48 UTC by runesk
-
runesk committed revision 20 to the muninlite SVN repository, changing 1 files.
2009-03-17 12:35:31 UTC by runesk
-
runesk committed revision 19 to the muninlite SVN repository, changing 1 files.
2009-03-17 12:17:51 UTC by runesk
-
Thanks for the report.
2009-03-17 12:16:22 UTC by runesk