[ On Tuesday, February 4, 2003 at 17:48:24 (-0500), Eric Siegerman wrote: ]
> Subject: Re: Can't do setuid
>
> That should only have been done on the directories, NOT on the files.
> However, everything should be g+w.  So from a standing start,
> it'd be something like:
>       chmod -R g+w
>       find . -type d -print0 | xargs -0 chmod g+s

You don't want the ,v files to be writable by anyone.  So, just this:

        find . -type d -print0 | xargs -0 chmod g+sw

-- 
                                                                Greg A. Woods

+1 416 218-0098;            <[EMAIL PROTECTED]>;           <[EMAIL PROTECTED]>
Planix, Inc. <[EMAIL PROTECTED]>; VE3TCP; Secrets of the Weird <[EMAIL PROTECTED]>


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to