view debian/cron.daily @ 436:4426f4dc6e8b noffle

[svn] * src/protocol.c: Reading of long lines broken in Prt_getLn(). Fix and change to split long lines rather than truncate. Also change Prt_putTxtBuf() to work properly with long lines by removing all fixed buffer dependencies.
author bears
date Wed, 25 Jun 2003 10:40:02 +0100
parents 08222dbe6eb0
children
line wrap: on
line source

#!/bin/sh
#
# expire old articles, output will be logged to syslog

set -e

if [ -x /usr/bin/noffle ]; then
	/usr/bin/noffle --expire > /dev/null 2>&1
fi

exit 0