> I add this line 'umask 022' at the top of my post-commit script: > /srv/svn/repositories/snapshot/hooks/post-commit > > And after I commit a ticket, the /tmp/trac.log still own by a user and > the permission is not 777
That's the expected behaviour, isn't it? umask 022 gives '644' permissions, that is rw-r--r- (man umask if you have any doubt) What is the user that executes the 'SVN' process ? Add something like: id > /tmp/svn-ower.log at the top of your commit script, commit a new revision, and look at the content of this new file. Cheers, Manu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
