diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-06 23:01:42 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-06 23:01:42 +0000 |
commit | 670589571e3bb2706c6eaae0a3b966f6e4124355 (patch) | |
tree | 2c425d0d126d24042f90985c378875e4751ebb52 /init.d | |
parent | f6c3896087a364e7cabe791640a50c675fc9ca4a (diff) |
init.d/bootmisc: Another instance of the same pattern matching case.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/bootmisc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 695e4509..a96236ac 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -29,7 +29,7 @@ cleanup_tmp_dir() # Faster than raw find if ! rm -rf -- [!ajlq\.]* 2>/dev/null ; then # Blah, too many files - find . -maxdepth 1 -name '[^ajlq\.]*' -exec rm -rf -- {} + + find . -maxdepth 1 -name '[!ajlq\.]*' -exec rm -rf -- {} + fi # pam_mktemp creates a .private directory within which |