#!/bin/sh
#
# Cron.weekly script for slrn. Update newsgroups descriptions.
# Written By Joey Hess <joeyh@master.debian.org>

# Source config file.
. /etc/slrnget.conf

if [ "$GETDESC_WITH_CRONJOB" = "y" ] ; then
	# If term is set to "unknown", slrn gets upset.
	TERM=vt100
	export TERM
	/usr/sbin/slrn_getdescs >/dev/null
fi
