Codebase list debian-goodies / 300a6b4
debmany: No more use /dev/shm for temporary files (Closes: #679457) Axel Beckert 9 years ago
2 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
1616 faster now, thanks to Jakub Wilk for the idea!)
1717 * [debmany]
1818 - Use curl --location to support redirects (Closes: #679225)
19 - No more use /dev/shm for temporary files (Closes: #679457)
1920 * [checkrestart]
2021 - Check ignorelist for package name equality, not substring match.
2122 Thanks Francesco Poli! (Closes: #696533)
231231 trap 'test -n "$temp" && rm -rf "$temp"; exit' 0 2 15 # cleanup
232232
233233 # find a directory for temporary files (you can use $TMPDIR to specify the destination)
234 for tmp in "$TMPDIR" /dev/shm /tmp /var/tmp
234 for tmp in "$TMPDIR" /tmp /var/tmp
235235 do
236236 test -d "$tmp" && break
237237 done