blob: 46cedb174e6987d5b38620d913fe33d963e28f16 [file] [log] [blame]
# Read the .functions file
. ../../test/.functions
LOOP_LEN=$1
HOST=$2
PORT=$3
declare -i i
i=0
while [ $i -lt $LOOP_LEN ]
do
sleep 1
i=$i+1
java -Dlog4j.configDebug org.apache.log4j.varia.Roller $HOST $PORT
done