150.clean-hoststat revision 50472
1#!/bin/sh
2#
3# $FreeBSD: head/etc/periodic/daily/150.clean-hoststat 50472 1999-08-27 23:37:10Z peter $
4#
5
6if [ -d /var/spool/.hoststat ] ; then
7	echo ""
8	echo "Removing stale files from /var/spool/.hoststat:"
9
10	cd /var/spool/.hoststat && find * -mtime +3 -delete
11fi
12