git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Make creation of pack/pack-*.keep obey the umask
@ 2008-05-07 17:25 Jason Gunthorpe
  2008-05-22  2:02 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Jason Gunthorpe @ 2008-05-07 17:25 UTC (permalink / raw)
  To: git

Prevents git clone from complaining on shared repositories

Initialized empty Git repository in /tmp/src/.git/
cpio: objects/pack/pack-601efa4cfe63e081c0591b463549aeba3f7c6164.keep: Cannot open: Permission denied
3376 blocks

Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
---

I'm uncertain if the keep files should be sticking around for so long,
commit b8077709 makes it sounds like they are shorted lived lock
files. In the case I have the keep file contains:

fetch-pack 20810 on bertha1

But, I don't see anything in fetch-pack to erase the keep file.. In
any event making the file the same permissions as everything else
can't hurt.

 index-pack.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/index-pack.c b/index-pack.c
index 9c0c278..eb19e98 100644
--- a/index-pack.c
+++ b/index-pack.c
@@ -707,7 +707,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name,
 				 get_object_directory(), sha1_to_hex(sha1));
 			keep_name = name;
 		}
-		keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0600);
+		keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0666);
 		if (keep_fd < 0) {
 			if (errno != EEXIST)
 				die("cannot write keep file");
-- 
1.5.4.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-05-22  2:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-07 17:25 [PATCH] Make creation of pack/pack-*.keep obey the umask Jason Gunthorpe
2008-05-22  2:02 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).