Subject: | /tmp files are not unlinked properly |
If you're using gpg, /tmp will fill up with files rapidly. (I think
this is what
http://brad.livejournal.com/2211936.html?thread=11715168#t11715168 ran
into.)
This patch fixes that.
Also, you should make a note in the docs that the block size must all
fit in /tmp...
Subject: | tmp.patch |
--- lib/Brackup/Root.pm~
+++ lib/Brackup/Root.pm
@@ -207,6 +207,7 @@
waitpid($pid, 0);
die "GPG failed: $!" if $? != 0; # If gpg return status is non-zero
+ unlink $tmpfn;
return $ret;
}
Diff finished. Mon Nov 27 23:35:39 2006