diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2011-12-06 21:02:40 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2011-12-06 21:02:40 +0000 |
commit | 4c8633c1727d8ff2d25faad83e19b24d68e61270 (patch) | |
tree | fdaf5523658b9742517a772c5f1ed4d94450e6d7 /etc/daily | |
parent | 7704a284773b1336cb80b8b7ceb719e3a4b6aee4 (diff) |
closing fd 0-2 is indeed bad style and potentially dangerous, as pointed
out by Arne Becker, who also supplied the diff, thanks!
ok schwarze@
agreed by many
Diffstat (limited to 'etc/daily')
-rw-r--r-- | etc/daily | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/daily b/etc/daily index bd9e5355536..4d4b60b3258 100644 --- a/etc/daily +++ b/etc/daily @@ -1,5 +1,5 @@ # -# $OpenBSD: daily,v 1.71 2011/04/23 19:35:53 schwarze Exp $ +# $OpenBSD: daily,v 1.72 2011/12/06 21:02:39 halex Exp $ # From: @(#)daily 8.2 (Berkeley) 1/25/94 # # For local additions, create the file /etc/daily.local. @@ -50,7 +50,7 @@ if [ -d /tmp -a ! -L /tmp ]; then find -x . \ \( -path './ssh-*' -o -path ./.X11-unix -o -path ./.ICE-unix \ -o -path ./portslocks \) \ - -prune -o -type f -atime +3 -execdir rm -f -- {} \; 2>&- + -prune -o -type f -atime +3 -execdir rm -f -- {} \; 2>/dev/null find -x . -type d -mtime +1 ! -path ./vi.recover ! -path ./.X11-unix \ ! -path ./.ICE-unix ! -path ./portslocks ! -name . \ -execdir rmdir -- {} \; >/dev/null 2>&1; } @@ -61,7 +61,7 @@ if [ -d /var/tmp -a ! -L /var/tmp ]; then find -x . \ \( -path './ssh-*' -o -path ./.X11-unix -o -path ./.ICE-unix \ -o -path ./portslocks \) \ - -prune -o ! -type d -atime +7 -execdir rm -f -- {} \; 2>&- + -prune -o ! -type d -atime +7 -execdir rm -f -- {} \; 2>/dev/null find -x . -type d -mtime +1 ! -path ./vi.recover ! -path ./.X11-unix \ ! -path ./.ICE-unix ! -path ./portslocks ! -name . \ -execdir rmdir -- {} \; >/dev/null 2>&1; } |