Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / ntp / scripts / support / bin / mvstats
1 #!/bin/sh
2 #
3 # mvstats,v 3.1 1993/07/06 01:10:24 jbj Exp
4 #
5 # mvstats is called by cron for keeping the log files together
6 # usually only used on reference hosts
7 #
8 # Files reside in /var/NTP
9 # Files older than 2 days will be compressed,
10 # Files older than 64 days will be removed.
11 #
12 # mvstats,v
13 # Revision 3.1  1993/07/06  01:10:24  jbj
14 # XNTP release 3.1
15 #
16 #
17 # Revision 1.1  1992/12/10  12:58:24  kardel
18 # Prerelease NTP V3 / DCF
19 #
20 #
21 cd /var/NTP
22 find . ! -name '*.Z' -mtime +2 -exec compress -f {} \;
23 find . -mtime +64 -exec rm -f {} \;