]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: Do not generate large not really useful test files containing names in powerdnss... 12723/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 5 Apr 2023 12:44:09 +0000 (14:44 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 11 Apr 2023 07:06:08 +0000 (09:06 +0200)
build-scripts/test-recursor-bulk

index c91a9a3b6c3209a8f9b24ec4733600c64b83c283..e4258e2da0288961d58b36aaaaecf4b6b94aadb2 100755 (executable)
@@ -23,13 +23,16 @@ if [ ! -z "$1" ]; then
   numdomains="$1"
 fi
 
+if false; then
 set +x
 for prefix in 'www' 'wildcard'; do
+  rm -f ${prefix}.csv
   for num in $(seq 0 1000000); do
     echo "${num},${prefix}.powerdnssec.org" >> ${prefix}.csv
   done
 done
 set -x
+fi
 
 EXIT=0