#!/bin/bash
# a dummy test
echo $CTCS_ON_EVENT
sleep 2
if [ $[$RANDOM % 10000] -lt 3000 ] ; then
	exit 1
else
	exit 0
fi
