Hi! > Reminder from Infra to make sure the directories are 775 and the files > are 664 on distribution and web directories on people.apache.org. > You can use the following in your home-directory (or whatever directory as base) to reset those permissions.
find . -type f -print0 | xargs -0 chmod 664 find . -type d -print0 | xargs -0 chmod 775 Ciao, Mario --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
