1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 10:28:36 +00:00

FIXED: /etc/munin/plugins/pdns_rec_throttle: 40: Syntax error: end of file unexpected (expecting "fi")

This commit is contained in:
Eugen Ganshorn 2012-10-24 17:44:16 +02:00
parent 4c0e44be9d
commit 2f4f429842

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