Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
#!/bin/sh
2
 
3
/usr/sbin/logrotate /etc/logrotate.conf
4
EXITVALUE=$?
5
if [ $EXITVALUE != 0 ]; then
6
    /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
7
fi
8
exit $EXITVALUE