RE: Git-daemon messing up permissions for gitweb
From: Post, Mark K <hidden>
Date: 2016-06-15 22:42:29
Martin is using git over SSH. I have git-shell in /etc/passwd for his account. Mark Post -----Original Message----- From: Junio C Hamano [mailto:junkio@cox.net] Sent: Friday, June 09, 2006 3:51 PM To: Post, Mark K Cc: git@vger.kernel.org Subject: Re: Git-daemon messing up permissions for gitweb "Post, Mark K" [off-list ref] writes:
I'm trying to set up a git repository for mainframe Linux developers
to
use at git390.osdl.marist.edu. Everything _seemed_ to go well, until Martin Schwidefsky started actually pushing changes back to the repository. When he does that, the projects disappear from the web
page
that gitweb.cgi is generating.
As far as I can tell, the problem is happening because these files are being written out with file permissions of 640, and since Apache is running as user wwwrun, it can't read them: -rw-r----- 1 sky git 5490 Jun 9 03:35 ./linux-2.6.git/info/refs -rw-r----- 1 sky git 54 Jun 9 03:35 ./linux-2.6.git/objects/info/packs -rw-r----- 1 sky git 41 Jun 9 03:35
First of all, it is not git-daemon that is updating these refs. The daemon is a read only facility. And you have checked the suggestion by Linus to set the umask to world readable, which brings me to the next question. How did Martin actually "push changes back"? Was it over git protocol over SSH, or the webdav thing over http push? The comment by Linus is about the former and I do not know offhand who webdav thing runs as or how it handles the permissino bits. It could be that your ssh daemon installation bypasses .bashrc and uses its own .ssh/environment, in which case your user would may need to do umask there as well.