Skip to content

Commit

Permalink
🐛 adapt graphing for TCP based DNS server as well
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmerz committed Feb 14, 2024
1 parent a865575 commit c779e2f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 02_dnsping-graph.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ resolverlist="$(grep -v ^\# dnsresolvers.list)"
[ -z "$resolverlist" ] && exit 1
for resolver in $resolverlist; do

if echo "$resolver"|grep -q 'T'; then
resolver="$(echo "$resolver"|cut -d "-" -f1)"
fi

# create html-file from "template" if not existing:
for file in index_"$resolver"*.html; do
if [ ! -e "$file" ]; then
Expand Down

0 comments on commit c779e2f

Please sign in to comment.