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

Merge pull request #203 from eugenganshorn/master

Syntax Error FIXED
This commit is contained in:
Steve Schnepp 2012-10-25 02:28:41 -07:00
commit 33afeeddc5

View file

@ -21,7 +21,7 @@ fi
if [ "$1" = "config" ]; then
echo 'graph_title PDNS Recursor Throttling'
echo 'graph_order throttled
echo 'graph_order throttled'
echo 'graph_vlabel queries'
echo 'graph_info Throttled queries'
echo 'graph_category pdns'
@ -34,6 +34,6 @@ if [ "$1" = "config" ]; then
exit 0
fi
echo throttled.value `rec_control get throttled-out'
echo throttled.value `rec_control get throttled-out`
exit 0