Activity log for bug #1156218

Date Who What changed Old value New value Message
2013-03-17 13:41:44 Ari bug added bug
2013-03-17 13:41:44 Ari attachment added Modified ooo-thumbnailer script https://bugs.launchpad.net/bugs/1156218/+attachment/3579564/+files/ooo-thumbnailer
2013-03-17 13:42:19 Ari description Description: Temporary files generated in the process of creating thumbnails are not removed after the thumbnailer exits. Current behaviour: ooo-thumbnailer does not remove tmpfile on exit Expected behaviour: The script should clean after itself. Patch: I was able to troubleshoot this bug by modifying the script in /usr/bin/ooo-thumbnailer: Changing trap cleanup INT TERM EXIT to trap cleanup ERR solved the problem for me. Description: Temporary files generated in the process of creating thumbnails are not removed after the thumbnailer exits. Current behaviour: ooo-thumbnailer does not remove tmpfile on exit Expected behaviour: The script should clean after itself. Patch: I was able to troubleshoot this bug by modifying the script in /usr/bin/ooo-thumbnailer: Changing     trap cleanup Err to     trap cleanup INT TERM EXIT solved the problem for me.
2013-03-17 13:42:25 Ari description Description: Temporary files generated in the process of creating thumbnails are not removed after the thumbnailer exits. Current behaviour: ooo-thumbnailer does not remove tmpfile on exit Expected behaviour: The script should clean after itself. Patch: I was able to troubleshoot this bug by modifying the script in /usr/bin/ooo-thumbnailer: Changing     trap cleanup Err to     trap cleanup INT TERM EXIT solved the problem for me. Description: Temporary files generated in the process of creating thumbnails are not removed after the thumbnailer exits. Current behaviour: ooo-thumbnailer does not remove tmpfile on exit Expected behaviour: The script should clean after itself. Patch: I was able to troubleshoot this bug by modifying the script in /usr/bin/ooo-thumbnailer: Changing     trap cleanup ERR to     trap cleanup INT TERM EXIT solved the problem for me.