The seq command is not defined in the POSIX standard and is missing on
OpenBSD. Given that the system test code is meant to be POSIX-compliant
replace it with a shell construct.
[ ! -f ns2/zones.conf ] && touch ns2/zones.conf
copy_setports ns2/named3.conf.in ns2/named.conf
-for i in `seq 1 50`; do
+i=1
+while [ $i -lt 50 ]; do
ret=0
zone_name=`printf "example%03d.com" $i`
$RNDCCMD 10.53.0.2 reconfig || ret=1
if [ $ret != 0 ]; then echo_i "failed"; break; fi
done # end for #
+ i=$((i + 1))
status=`expr $status + $ret`
echo_i "exit status: $status"