view debian/cron.daily @ 481:0a5dc5f69746 noffle

[svn] * src/filter.c: Log filter matches when log category filter is selected.
author bears
date Wed, 13 Oct 2004 22:59:41 +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