Re: Help with Mac repositry permissions

2010-09-08 Thread Ryan Schmidt
On Sep 8, 2010, at 04:53, Giulio Troccoli wrote: >> Also the /Users folder perms is: >> drwxr-xr-x 6 root admin 204 18 Aug 10:03 Users > > Now, there's your answer. The user that runs theweb server, _www, has > permission to access /Users only becuase of the others permissions

Re: Help with Mac repositry permissions

2010-09-08 Thread Tyler Roscoe
On Wed, Sep 08, 2010 at 07:47:28PM +1000, Matthew Allen wrote: > sudo find /path/to/repo -type d -exec chmod 770 {} \; > > I don't know what the "2" does in front of the 770. But it looks like it > still works... so maybe thats all there is to it? The 2 controls the sticky bit. Mode 2770 s

RE: Help with Mac repositry permissions

2010-09-08 Thread Giulio Troccoli
bject: RE: Help with Mac repositry permissions > > The problem is that I want to make sure this is secure, and > the fact that it seems to be using the webserver seems to be > using the global permissions indicates to me that the repo > files are not being correctly protected. If someo

Re: Help with Mac repositry permissions

2010-09-08 Thread Matthew Allen
-- Original Message -- To: Matthew Allen (f...@memecode.com) From: Erik Andersson (kir...@gmail.com) Subject: Re: Help with Mac repositry permissions Date: 8/9/2010 4:58:47p > Hi > > Not really sure about mac.. but what I would do in linux would be: > > > sudo

RE: Help with Mac repositry permissions

2010-09-08 Thread Giulio Troccoli
rg > Subject: Help with Mac repositry permissions > > Hi I started a serverfault question about mac svn repo permissions: > http://serverfault.com/questions/171647/what-are-the-correct-u > sergroup-for-a-mac-svn-apache-install > > But haven't got any response yet, anyone on

Re: Help with Mac repositry permissions

2010-09-08 Thread Ryan Schmidt
On Sep 8, 2010, at 01:58, Erik Andersson wrote: > Not really sure about mac.. It's UNIX. > but what I would do in linux would be: > > sudo find /path/to/repo -type f -exec chmod 660 {} \; > sudo find /path/to/repo -type d -exec chmod 2770 {} \; > sudo chown -R root.www-data /path/to/repo The

Re: Help with Mac repositry permissions

2010-09-07 Thread Erik Andersson
Hi Not really sure about mac.. but what I would do in linux would be: sudo find /path/to/repo -type f -exec chmod 660 {} \; sudo find /path/to/repo -type d -exec chmod 2770 {} \; sudo chown -R root.www-data /path/to/repo How do you remove the global permissions? What error message do you get?

Help with Mac repositry permissions

2010-09-07 Thread Matthew Allen
Hi I started a serverfault question about mac svn repo permissions: http://serverfault.com/questions/171647/what-are-the-correct-usergroup-for-a-mac-svn-apache-install But haven't got any response yet, anyone on here care to help? Regards -- Matthew Allen