]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/periodic/daily/150.clean-hoststat
This commit was generated by cvs2svn to compensate for changes in r52277,
[FreeBSD/FreeBSD.git] / etc / periodic / daily / 150.clean-hoststat
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 if [ -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
11 fi