From 2f4f429842ba375c88d265231558fa6c7720cae9 Mon Sep 17 00:00:00 2001 From: Eugen Ganshorn Date: Wed, 24 Oct 2012 17:44:16 +0200 Subject: [PATCH] FIXED: /etc/munin/plugins/pdns_rec_throttle: 40: Syntax error: end of file unexpected (expecting "fi") --- plugins/network/dns/pdns_rec_throttle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/network/dns/pdns_rec_throttle b/plugins/network/dns/pdns_rec_throttle index e83624e2..8fbd66a9 100755 --- a/plugins/network/dns/pdns_rec_throttle +++ b/plugins/network/dns/pdns_rec_throttle @@ -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