### @(#)$Id: logrot_refreshSG,v 1.1 2003/06/29 21:51:44 christopher Exp $
# logrotate control file for refreshSG.
#
# Version: 1.3
# Author: Christopher Rath <christopher@rath.ca>
# 
# This control file tells logrotate to rotate the refreshSG log file
# once a month, to keep 5 months worth of copies, not to generate an
# error email if the log is empty, not to rotate an empty log, and to
# compress the old logs.  See the logrotate(8) man page for further
# details on the contents of this file.
#
# No copyright retained.  This script is in the Public Domain.
# This package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
###

/var/log/refreshSG {
    monthly
    rotate 5
    missingok
    notifempty
    compress
}
