aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/scripts/zonewalk-to-types.sh2
1 files changed, 1 insertions, 1 deletions
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
10# FILE ($1) contains results from DNS lookup; strip 10# FILE ($1) contains results from DNS lookup; strip
11# everything but the hostnames, remove duplicates 11# everything but the hostnames, remove duplicates
12# and then randomize the order. 12# and then randomize the order.
13cat $1 | awk '{print $1}' | sort | uniq | shuf > $1.tmp 13cat $1 | grep -v SOA | awk '{print $1}' | sort | uniq | shuf > $1.tmp
14TOTAL=`cat $1.tmp | wc -l` 14TOTAL=`cat $1.tmp | wc -l`
15GROUP_SIZE=`expr $TOTAL / \( $NUM_CLIENTS + 1 \)` 15GROUP_SIZE=`expr $TOTAL / \( $NUM_CLIENTS + 1 \)`
16echo "Creating $NUM_CLIENTS benchmark sets with 2x $GROUP_SIZE entries each." 16echo "Creating $NUM_CLIENTS benchmark sets with 2x $GROUP_SIZE entries each."