diff options
author | Roy Marples <roy@marples.name> | 2008-03-18 08:19:29 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-18 08:19:29 +0000 |
commit | 7b8215bbd3124117b1c5618cea05b6d6d29fce09 (patch) | |
tree | 68e142a4a27a1944528bb3fae8e9fe792f950603 /init.d/bootmisc.in | |
parent | 51c825ceee9f86deb1afc20f4406c2c8dbb3d705 (diff) |
Support pam_mktemp.
Diffstat (limited to 'init.d/bootmisc.in')
-rw-r--r-- | init.d/bootmisc.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 08f9cc57..a19a10b1 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -31,18 +31,20 @@ cleanup_tmp_dir() rm -rf -- [b-ikm-pr-zA-Z0-9\.]* find ${startopts} ! -name . \ - ! -path ./lost+found \ + ! -path "./lost+found" \ ! -path "./lost+found/*" \ - ! -path ./quota.user \ + ! -path "./quota.user" \ ! -path "./quota.user/*" \ - ! -path ./aquota.user \ + ! -path "./aquota.user" \ ! -path "./aquota.user/*" \ - ! -path ./quota.group \ + ! -path "./quota.group" \ ! -path "./quota.group/*" \ - ! -path ./aquota.group \ + ! -path "./aquota.group" \ ! -path "./aquota.group/*" \ - ! -path ./journal \ + ! -path "./journal" \ ! -path "./journal/*" \ + ! -path "./.private" \ + ! -path "./.private/*" \ ${delete} \ -type d -prune eend 0 |