Change wipe_tmp_dirs to clean_tmp_dirs so user understands meaning better, #153

This commit is contained in:
Roy Marples
2009-02-23 09:36:48 +00:00
parent 749938d439
commit 66cd081301
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ start()
# Clean up /tmp directories
local tmp=
for tmp in ${wipe_tmp_dirs-/tmp}; do
for tmp in ${clean_tmp_dirs:-${wipe_tmp_dirs-/tmp}}; do
cleanup_tmp_dir "${tmp}"
done