Details
-
Task
-
Resolution: Fixed
-
Major
-
None
-
None
Description
This was running
/bin/rm -f /tmp/cbinfo-*
|
which doesn't get the glob expanded by a shell, so does nothing. Besides the -f was masking the error. Better off with
/usr/bin/find /tmp -name 'cbinfo-*' -exec rm {} \;
|