From: Christian Grothoff Date: Sat, 26 May 2018 16:11:21 +0000 (+0200) Subject: exclude SOA-only zones X-Git-Tag: v0.11.0pre66~36^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4b8ed8fd1560491f60481fef6c1da660ce7d54fe;p=oweals%2Fgnunet.git exclude SOA-only zones --- diff --git a/contrib/scripts/zonewalk-to-types.sh b/contrib/scripts/zonewalk-to-types.sh index 54c887b8f..dfe15a8e3 100755 --- a/contrib/scripts/zonewalk-to-types.sh +++ b/contrib/scripts/zonewalk-to-types.sh @@ -10,7 +10,7 @@ NUM_CLIENTS=3 # FILE ($1) contains results from DNS lookup; strip # everything but the hostnames, remove duplicates # and then randomize the order. -cat $1 | awk '{print $1}' | sort | uniq | shuf > $1.tmp +cat $1 | grep -v SOA | awk '{print $1}' | sort | uniq | shuf > $1.tmp TOTAL=`cat $1.tmp | wc -l` GROUP_SIZE=`expr $TOTAL / \( $NUM_CLIENTS + 1 \)` echo "Creating $NUM_CLIENTS benchmark sets with 2x $GROUP_SIZE entries each."