1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Merge pull request #89 from mente/master

php5-fpm typo fix
This commit is contained in:
Kenyon Ralph 2012-04-18 12:23:39 -07:00
commit d971fb5e27

View file

@ -41,8 +41,8 @@ if [ "$1" = "config" ]; then
exit 0
else
awk '
/^idle/ {print "active.value " $3}
/^active/{print "idle.value " $3}
/^idle/ {print "idle.value " $3}
/^active/{print "active.value " $3}
/^total/ {print "total.value " $3}
' < $statusfile
fi