diff options
author | ache <ache@FreeBSD.org> | 1997-09-11 15:21:30 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-11 15:21:30 +0000 |
commit | ce64e4e169ac61e130e0a35de394b94f77b2ac62 (patch) | |
tree | 793eaec7e177415715065d75afa2cc5c6f9b4c3f /etc/periodic | |
parent | 4fd06899756a5ef0791f3d7582ee1af7e62d6d07 (diff) | |
download | FreeBSD-src-ce64e4e169ac61e130e0a35de394b94f77b2ac62.zip FreeBSD-src-ce64e4e169ac61e130e0a35de394b94f77b2ac62.tar.gz |
Fix typo in my prev. commit
Diffstat (limited to 'etc/periodic')
-rwxr-xr-x | etc/periodic/daily/110.clean-tmps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/periodic/daily/110.clean-tmps b/etc/periodic/daily/110.clean-tmps index 8fa1935..86abc4c 100755 --- a/etc/periodic/daily/110.clean-tmps +++ b/etc/periodic/daily/110.clean-tmps @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: 110.clean-tmps,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $ +# $Id: 110.clean-tmps,v 1.2 1997/09/01 11:07:55 ache Exp $ # # This is a security hole, never use 'find' on a public directory # with -exec rm -f as root. This can be exploited to delete any file @@ -26,7 +26,7 @@ fi if [ -d /var/tmp ]; then cd /var/tmp && { find . ! -name . -atime +7 -ctime +3 -exec rm -f -- {} \; - find -d . ! -name . ! name vi.recover -type d -mtime +1 -exec rmdir -- {} \; \ + find -d . ! -name . ! -name vi.recover -type d -mtime +1 -exec rmdir -- {} \; \ >/dev/null 2>&1 } fi |