2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01: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