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

shellcheck fixes for pdns-recursor plugins.

This commit is contained in:
Bas Couwenberg 2017-09-29 09:34:25 +02:00
parent 9aa6d7e977
commit f9426daca5
10 changed files with 27 additions and 27 deletions

View file

@ -47,8 +47,8 @@ if [ "$1" = "config" ]; then
exit 0
fi
echo tcp.value `rec_control get unauthorized-tcp`
echo udp.value `rec_control get unauthorized-udp`
echo unexpected.value `rec_control get unexpected-packets`
echo tcp.value "$(rec_control get unauthorized-tcp)"
echo udp.value "$(rec_control get unauthorized-udp)"
echo unexpected.value "$(rec_control get unexpected-packets)"
exit 0