#!/bin/sh

TMPF=`mktemp /tmp/logrotate.XXXXXXXXXX`
# logrotate run against the customized cifs logrotate conf file
/usr/sbin/logrotate /etc/opt/novell/cifs/cifslogrotate.conf 2>&1 | tee $TMPF
EXITVALUE=${PIPESTATUS[0]}

if [ $EXITVALUE != 0 ]; then
    # wait a sec, we might just have restarted syslog
    sleep 1
    # tell what went wrong
    /bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
    /bin/logger -t logrotate -f $TMPF
fi

rm -f $TMPF
exit 0
