Skip to content

Commit

Permalink
debmany: No more use /dev/shm for temporary files (Closes: #679457)
Browse files Browse the repository at this point in the history
  • Loading branch information
xtaran committed Jul 4, 2013
1 parent 8881841 commit 300a6b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions debian/changelog
Expand Up @@ -17,6 +17,7 @@ debian-goodies (0.62) UNRELEASED; urgency=low
faster now, thanks to Jakub Wilk for the idea!)
* [debmany]
- Use curl --location to support redirects (Closes: #679225)
- No more use /dev/shm for temporary files (Closes: #679457)
* [checkrestart]
- Check ignorelist for package name equality, not substring match.
Thanks Francesco Poli! (Closes: #696533)
Expand Down
2 changes: 1 addition & 1 deletion debmany/debmany
Expand Up @@ -232,7 +232,7 @@ else
trap 'test -n "$temp" && rm -rf "$temp"; exit' 0 2 15 # cleanup

# find a directory for temporary files (you can use $TMPDIR to specify the destination)
for tmp in "$TMPDIR" /dev/shm /tmp /var/tmp
for tmp in "$TMPDIR" /tmp /var/tmp
do
test -d "$tmp" && break
done
Expand Down

0 comments on commit 300a6b4

Please sign in to comment.