diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2014-11-05 17:08:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2014-11-05 17:08:00 +0000 |
commit | fdb582d9c5c3a3207f38b410f90b342b62e67091 (patch) | |
tree | d81525ab135befc2c024de171b23f9233743fed0 /etc | |
parent | bcdf5c2efe76d9f4aa2866937338df4094947a85 (diff) |
When clearing /tmp, use "-maxdepth -1" instead of "-type d -prune".
This is easier to understand and fixes a bug where the "-type d -prune"
was misplaced as noticed by pirofti@. OK deraadt@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.442 2014/09/15 22:28:58 matthieu Exp $ +# $OpenBSD: rc,v 1.443 2014/11/05 17:07:59 millert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -442,8 +442,8 @@ echo clearing /tmp # (not needed with mfs /tmp, but doesn't hurt there...) (cd /tmp && rm -rf [a-km-pr-zA-Z]*) (cd /tmp && - find . ! -name . ! -name lost+found ! -name quota.user \ - ! -name quota.group -execdir rm -rf -- {} \; -type d -prune) + find . -maxdepth 1 ! -name . ! -name lost+found ! -name quota.user \ + ! -name quota.group -execdir rm -rf -- {} \;) setup_X_sockets |