#!/bin/sh

# $Id: utmp-jeber.cron.in,v 1.1 2003/02/11 16:00:33 siefca Exp $
#
# This is cron script for UTMP jeber.
#

RESULT=`utmp-jeber -bx`
if [ "x$RESULT" != "x" ]; then
	echo "$RESULT" | while read MSG; do
		logger -t "utmp-jeber" -p auth.notice "$MSG"
	done
fi

exit 0
