#!/bin/sh

# setup and start cron / logrotate
if [ ! -f /etc/logrotate.conf ]; then
   cp /SpliceCom/logrotate.conf /etc/
fi
if [ ! -f /etc/crontab ]; then
   cp /SpliceCom/crontab /etc/
   [ -d /etc/cron.d ] || mkdir /etc/cron.d
   [ -d /var/spool/cron/tabs ] || mkdir -p /var/spool/cron/tabs
fi
if [ -f /etc/crontab ]; then
/usr/sbin/cron
fi


