diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-03-28 21:32:31 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-03-28 21:32:31 +0000 |
commit | 1161ed96f255052f2ba256b17b150cad82a133d8 (patch) | |
tree | e198885a14ebdb76fa2d67e6c10eeed9166479fc /etc/daily | |
parent | 4146315c96ec2805827900e5c118eb3e15d1ce8e (diff) |
- no more /var/ssyslog (unused)
- no more /var/spool/lpd (lpd uses /var/spool/output)
- no more /var/preserve (old vi directory)
- update docs to reflect this
help with systrace provos@
help and ok millert@
Diffstat (limited to 'etc/daily')
-rw-r--r-- | etc/daily | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/etc/daily b/etc/daily index 933352e3424..2687ec7fc1e 100644 --- a/etc/daily +++ b/etc/daily @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: daily,v 1.42 2003/02/08 10:19:30 pvalchev Exp $ +# $OpenBSD: daily,v 1.43 2003/03/28 21:32:30 jmc Exp $ # From: @(#)daily 8.2 (Berkeley) 1/25/94 # PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin @@ -46,11 +46,6 @@ fi # >/dev/null 2>&1; } #fi -if [ -d /var/preserve -a ! -L /var/preserve ]; then - cd /var/preserve && { - find . ! -name . -mtime +7 -execdir rm -f -- {} \; ; } -fi - if [ -d /var/rwho -a ! -L /var/rwho ] ; then cd /var/rwho && { find . ! -name . -mtime +7 -execdir rm -f -- {} \; ; } |