##########################################
### Start script for the ccr agent #######
##########################################

#
# control logging method
#
log=echo
#log="logger -pdaemon.err"

exec_script=cc-fwagent

if [ ! -f /etc/init.d/$exec_script ] ; then
    $log ERROR : ccragent is not properly enabled.  Cannot find /etc/init.d/$exec_script
    exit 1
else
    /etc/init.d/$exec_script start
fi

